Add SDMMC driver to subsystem. SDMMC driver will handle initialization, as well as SDMMC I/O. SD mode support is currently supported, SPI mode support is not. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
9 lines
165 B
CMake
9 lines
165 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if (CONFIG_SD_STACK)
|
|
zephyr_interface_library_named(SD)
|
|
|
|
zephyr_library()
|
|
zephyr_library_sources (sd.c sdmmc.c)
|
|
endif()
|