Hello,
Related to this question, we are looking to use the ESP32-S3-WROOM-2-N32R8V in a project.
We want to attach an SD card in 4 bit mode.
Per the datasheet, it appears the -S3 supports two separate SD card "slots".
* Would we be able to connect the SD card in 4 bit mode independent of the internal PSRAM and flash?
* Would we be able to map all of the signal lines to arbitrary GPIO pins on the module we're working with?
Looking at
https://github.com/espressif/esp-idf/tr ... card/sdmmc
It suggests attaching GPIO33 and 34 to my SD card, but 33/34 is not connected to the pads on the module we are using - they're internally connected to the flash.
Code: Select all
GPIO36 CLK 10k pullup
GPIO35 CMD 10k pullup
GPIO37 D0 10k pullup
GPIO38 D1 not used in 1-line SD mode; 10k pullup in 4-line mode
GPIO33 D2 not used in 1-line SD mode; 10k pullup in 4-line mode
GPIO34 D3 not used in 1-line SD mode, but card's D3 pin must have a 10k pullup
For our SD card, could we map GPIO33/34 to a different pin on our module?
TIA