All uncommitted work from ESP32 GDB stub development session. Includes: - GDB stub (uos_gdbstub.c/.h/_entry.S) - Startup vector table rewrite - ESP32 HAL integration files - Boot chain design docs - AGENTS.md absolute rules (commit before refactor, no unauthorized changes) - All prior deepseek session work This commit prevents further data loss. No claims of correctness. |
||
|---|---|---|
| .. | ||
| include/driver | ||
| src | ||
| test_apps | ||
| CMakeLists.txt | ||
| README.md | ||
SDSPI Host Driver
SD Host side related components are:
sdmmcesp_driver_sdmmcesp_driver_sdspi(current component)
For relationship and dependency among these components, see SD Host Side Related Component Architecture.
esp_driver_sdspi components is a driver based on ESP GPSPI master driver to help you:
- do SD transactions (under SDSPI mode) via ESP GPSPI peripheral.
- tune ESP GPSPI hardware configurations, such as clock frequency, bus width, etc.
- ...
You can
- use this driver to implement
sdmmcprotocol interfaces - directly use
esp_driver_sdspiAPIs
to communicate with SD slave devices under SDSPI mode.