diff --git a/stmhal/sdcard.c b/stmhal/sdcard.c index 32c9df60a2..caf6dc8d5d 100644 --- a/stmhal/sdcard.c +++ b/stmhal/sdcard.c @@ -40,9 +40,9 @@ #if MICROPY_HW_HAS_SDCARD -#if defined(MCU_SERIES_F7) +#if defined(MCU_SERIES_F7) || defined(MCU_SERIES_L4) -// The F7 series calls the peripheral SDMMC rather than SDIO, so provide some +// The F7 & L4 series calls the peripheral SDMMC rather than SDIO, so provide some // #defines for backwards compatability. #define SDIO SDMMC1 @@ -65,11 +65,6 @@ #define SDIO_TRANSFER_CLK_DIV SDMMC_TRANSFER_CLK_DIV -#elif defined(MCU_SERIES_L4) - -// The L4 series is not supported -#error Unsupported Processor - #endif // TODO: Since SDIO is fundamentally half-duplex, we really only need to