:orphan: .. title:: CONFIG_SDMMC_STM32 .. kconfig:: CONFIG_SDMMC_STM32 CONFIG_SDMMC_STM32 ################## *STM32 SDMMC driver* Type: ``bool`` Help ==== .. code-block:: none File system on sdmmc accessed through stm32 sdmmc. Direct dependencies =================== \ :kconfig:`HAS_STM32CUBE ` && \ :kconfig:`DISK_DRIVER_SDMMC ` && \ :kconfig:`DISK_DRIVERS ` *(Includes any dependencies from ifs and menus.)* Default ======= - n Symbols selected by this symbol =============================== - \ :kconfig:`USE_STM32_HAL_SD ` - \ :kconfig:`USE_STM32_HAL_SD_EX ` if \ :kconfig:`SOC_SERIES_STM32L4X ` - \ :kconfig:`USE_STM32_LL_SDMMC ` - \ :kconfig:`USE_STM32_HAL_DMA ` if \ :kconfig:`SOC_SERIES_STM32L4X ` || \ :kconfig:`SOC_SERIES_STM32F7X ` Kconfig definition ================== At ``/disk/Kconfig.sdmmc:48`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:116`` → ``/disk/Kconfig:13`` Menu path: (Top) → Device Drivers → Disk Drivers → SDMMC card driver .. code-block:: kconfig config SDMMC_STM32 bool "STM32 SDMMC driver" default n select USE_STM32_HAL_SD select USE_STM32_HAL_SD_EX if SOC_SERIES_STM32L4X select USE_STM32_LL_SDMMC select USE_STM32_HAL_DMA if SOC_SERIES_STM32L4X || SOC_SERIES_STM32F7X depends on HAS_STM32CUBE && DISK_DRIVER_SDMMC && DISK_DRIVERS help File system on sdmmc accessed through stm32 sdmmc. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*