esp-idf/components/esp_driver_sdspi
Ivan Grokhotkov f355ecac40
ci(sdspi): re-enable probe/rw tests for slot 1
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
2024-05-02 16:44:16 +02:00
..

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.