mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-15 21:21:04 +00:00
Update names of SD card GPIO pins
This commit is contained in:
parent
f25278d3d9
commit
247b0a269d
1 changed files with 1 additions and 1 deletions
|
@ -708,7 +708,7 @@ void app_main(void) {
|
|||
}
|
||||
|
||||
/* Start SD card filesystem */
|
||||
res = mount_sd(SD_CMD, SD_CLK, SD_D0, SD_PWR, "/sd", false, 5);
|
||||
res = mount_sd(GPIO_SD_CMD, GPIO_SD_CLK, GPIO_SD_D0, GPIO_SD_PWR, "/sd", false, 5);
|
||||
bool sdcard_ready = (res == ESP_OK);
|
||||
if (sdcard_ready) {
|
||||
ESP_LOGI(TAG, "SD card filesystem mounted");
|
||||
|
|
Loading…
Reference in a new issue