mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
These tests were disabled since SDMMC_FREQ_HIGHSPEED with sdspi didn't work on ESP32 and ESP32-S3. However we don't have other tests for slot 1, meaning that we weren't running probe and perf tests at all. This commit re-enables the tests, keeping them with SDMMC_FREQ_DEFAULT
SDSPI Host Driver
SD Host side related components are:
sdmmc
esp_driver_sdmmc
esp_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
sdmmc
protocol interfaces - directly use
esp_driver_sdspi
APIs
to communicate with SD slave devices under SDSPI mode.