1| Supported Targets | ESP32| 2| ----------------- | ---- | 3 4# SD Card example (SDMMC) 5 6(See the README.md file in the upper level 'examples' directory for more information about examples.) 7 8This example demonstrates how to use an SD card with an ESP device. Example does the following steps: 9 101. Use an "all-in-one" `esp_vfs_fat_sdmmc_mount` function to: 11 - initialize SDMMC peripheral, 12 - probe and initialize the card connected to SD/MMC slot 1 (HS2_CMD, HS2_CLK, HS2_D0, HS2_D1, HS2_D2, HS2_D3 lines), 13 - mount FAT filesystem using FATFS library (and format card, if the filesystem cannot be mounted), 14 - register FAT filesystem in VFS, enabling C standard library and POSIX functions to be used. 152. Print information about the card, such as name, type, capacity, and maximum supported frequency. 163. Create a file using `fopen` and write to it using `fprintf`. 174. Rename the file. Before renaming, check if destination file already exists using `stat` function, and remove it using `unlink` function. 185. Open renamed file for reading, read back the line, and print it to the terminal. 19 20This example support SD (SDSC, SDHC, SDXC) cards and eMMC chips. 21 22## Hardware connection 23 24This example runs on ESP-WROVER-KIT boards without any extra modifications required, only the SD card needs to be inserted into the slot. 25 26Other ESP32 development boards need to be connected to SD card as follows: 27 28ESP32 pin | SD card pin | Notes 29--------------|-------------|------------ 30GPIO14 (MTMS) | CLK | 10k pullup in SD mode 31GPIO15 (MTDO) | CMD | 10k pullup in SD mode 32GPIO2 | D0 | 10k pullup in SD mode, pull low to go into download mode (see Note about GPIO2 below!) 33GPIO4 | D1 | not used in 1-line SD mode; 10k pullup in 4-line SD mode 34GPIO12 (MTDI) | D2 | not used in 1-line SD mode; 10k pullup in 4-line SD mode (see Note about GPIO12 below!) 35GPIO13 (MTCK) | D3 | not used in 1-line SD mode, but card's D3 pin must have a 10k pullup 36 37This example doesn't utilize card detect (CD) and write protect (WP) signals from SD card slot. 38 39 40### Note about GPIO2 (ESP32 only) 41 42GPIO2 pin is used as a bootstrapping pin, and should be low to enter UART download mode. One way to do this is to connect GPIO0 and GPIO2 using a jumper, and then the auto-reset circuit on most development boards will pull GPIO2 low along with GPIO0, when entering download mode. 43 44- Some boards have pulldown and/or LED on GPIO2. LED is usually ok, but pulldown will interfere with D0 signals and must be removed. Check the schematic of your development board for anything connected to GPIO2. 45 46### Note about GPIO12 (ESP32 only) 47 48GPIO12 is used as a bootstrapping pin to select output voltage of an internal regulator which powers the flash chip (VDD_SDIO). This pin has an internal pulldown so if left unconnected it will read low at reset (selecting default 3.3V operation). When adding a pullup to this pin for SD card operation, consider the following: 49 50- For boards which don't use the internal regulator (VDD_SDIO) to power the flash, GPIO12 can be pulled high. 51- For boards which use 1.8V flash chip, GPIO12 needs to be pulled high at reset. This is fully compatible with SD card operation. 52- On boards which use the internal regulator and a 3.3V flash chip, GPIO12 must be low at reset. This is incompatible with SD card operation. 53 * In most cases, external pullup can be omitted and an internal pullup can be enabled using a `gpio_pullup_en(GPIO_NUM_12);` call. Most SD cards work fine when an internal pullup on GPIO12 line is enabled. Note that if ESP32 experiences a power-on reset while the SD card is sending data, high level on GPIO12 can be latched into the bootstrapping register, and ESP32 will enter a boot loop until external reset with correct GPIO12 level is applied. 54 * Another option is to burn the flash voltage selection efuses. This will permanently select 3.3V output voltage for the internal regulator, and GPIO12 will not be used as a bootstrapping pin. Then it is safe to connect a pullup resistor to GPIO12. This option is suggested for production use. 55 56The following command can be used to program flash voltage selection efuses **to 3.3V**: 57 58```sh 59 components/esptool_py/esptool/espefuse.py set_flash_voltage 3.3V 60``` 61 62This command will burn the `XPD_SDIO_TIEH`, `XPD_SDIO_FORCE`, and `XPD_SDIO_REG` efuses. With all three burned to value 1, the internal VDD_SDIO flash voltage regulator is permanently enabled at 3.3V. See the technical reference manual for more details. 63 64`espefuse.py` has a `--do-not-confirm` option if running from an automated flashing script. 65 66See [the document about pullup requirements](https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/sd_pullup_requirements.html) for more details about pullup support and compatibility of modules and development boards. 67 68## How to use example 69 70### 4-line and 1-line SD modes 71 72By default, example code uses the following initializer for SDMMC slot configuration: 73 74```c++ 75sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT(); 76``` 77 78Among other things, this sets `slot_config.width = 0`, which means that SD/MMC driver will use the maximum bus width supported by the slot. For slot 1, it will switch to 4-line mode when initializing the card (initial communication always happens in 1-line mode). If some of the card's D1, D2, D3 pins are not connected to the ESP32, set `slot_config.width = 1` — then the SD/MMC driver will not attempt to switch to 4-line mode. 79 80Note that even if card's D3 line is not connected to the ESP32, it still has to be pulled up, otherwise the card will go into SPI protocol mode. 81 82### Build and flash 83 84Build the project and flash it to the board, then run monitor tool to view serial output: 85 86``` 87idf.py -p PORT flash monitor 88``` 89 90(Replace PORT with serial port name.) 91 92(To exit the serial monitor, type ``Ctrl-]``.) 93 94See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. 95 96 97## Example output 98 99Here is an example console output. In this case a 128MB SDSC card was connected, and `EXAMPLE_FORMAT_IF_MOUNT_FAILED` menuconfig option enabled. Card was unformatted, so the initial mount has failed. Card was then partitioned, formatted, and mounted again. 100 101``` 102I (336) example: Initializing SD card 103I (336) example: Using SDMMC peripheral 104I (336) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0 105W (596) vfs_fat_sdmmc: failed to mount card (13) 106W (596) vfs_fat_sdmmc: partitioning card 107W (596) vfs_fat_sdmmc: formatting card, allocation unit size=16384 108W (7386) vfs_fat_sdmmc: mounting again 109Name: XA0E5 110Type: SDHC/SDXC 111Speed: 20 MHz 112Size: 61068MB 113I (7386) example: Opening file /sdcard/hello.txt 114I (7396) example: File written 115I (7396) example: Renaming file /sdcard/hello.txt to /sdcard/foo.txt 116I (7396) example: Reading file /sdcard/foo.txt 117I (7396) example: Read from file: 'Hello XA0E5!' 118I (7396) example: Card unmounted 119``` 120 121## Troubleshooting 122 123### Failure to download the example 124 125``` 126Connecting........_____....._____....._____....._____....._____....._____....._____ 127 128A fatal error occurred: Failed to connect to Espressif device: Invalid head of packet (0x34) 129``` 130 131Disconnect the SD card D0/MISO line from GPIO2 and try uploading again. Read "Note about GPIO2" above. 132 133### Card fails to initialize with `sdmmc_init_sd_scr: send_scr (1) returned 0x107` error 134 135Check connections between the card and the ESP32. For example, if you have disconnected GPIO2 to work around the flashing issue, connect it back and reset the ESP32 (using a button on the development board, or by pressing Ctrl-T Ctrl-R in IDF Monitor). 136 137### Card fails to initialize with `sdmmc_check_scr: send_scr returned 0xffffffff` error 138 139Connections between the card and the ESP32 are too long for the frequency used. Try using shorter connections, or try reducing the clock speed of SD interface. 140 141### Failure to mount filesystem 142 143``` 144example: Failed to mount filesystem. If you want the card to be formatted, set the EXAMPLE_FORMAT_IF_MOUNT_FAILED menuconfig option. 145``` 146The example will be able to mount only cards formatted using FAT32 filesystem. If the card is formatted as exFAT or some other filesystem, you have an option to format it in the example code. Enable the `EXAMPLE_FORMAT_IF_MOUNT_FAILED` menuconfig option, then build and flash the example. 147