mirror of https://github.com/arendst/Tasmota.git
include `SD_MMC.h` only when supported (#21611)
This commit is contained in:
parent
4858ec0aef
commit
7e8bcd896a
|
@ -83,7 +83,9 @@
|
|||
#include <LittleFS.h>
|
||||
#ifdef USE_SDCARD
|
||||
#include <SD.h>
|
||||
#ifdef SOC_SDMMC_HOST_SUPPORTED
|
||||
#include <SD_MMC.h>
|
||||
#endif // SOC_SDMMC_HOST_SUPPORTED
|
||||
#endif // USE_SDCARD
|
||||
#include "FFat.h"
|
||||
#include "FS.h"
|
||||
|
|
Loading…
Reference in New Issue