Hi, I am trying to interface the esp32-s3-devkitc-1 below:
to a SD card using this reader:
I've tried connecting to the SPI pins below:
MOSI: 11
MISO: 13
SCK: 12
SS: 10
or even remapping them with no luck.
The sketch is the basic one from arduino lib:
if (!SD.begin())
{
Serial.println("Card Mount Failed");
return false;
}
I've got the error below if I connect the SD Card to 5v:
[ 1679][E][sd_diskio.cpp:806] sdcard_mount(): f_mount failed: (3) The physical drive cannot work
[ 2188][E][sd_diskio.cpp:126] sdSelectCard(): Select Failed
Or the error below if I connect to the 3.3V:
[ 1897][E][sd_diskio.cpp:806] sdcard_mount(): f_mount failed: (13) There is no valid FAT volume
The SD Card is correctly formatted FAT32 32k, and the same reader works perfectly when connecting to a ESP32 (the common wroom 32d).