a6db78e2b3
This commit adds support for the ATMEL HSMCI peripheral for the SAM4E MCU series, enabling native SD card support. Signed-off-by: Vincent van Beveren <v.van.beveren@nikhef.nl>
12 lines
337 B
CMake
12 lines
337 B
CMake
# Copyright 2022 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
if (CONFIG_SDHC)
|
|
|
|
zephyr_library()
|
|
zephyr_library_sources_ifdef(CONFIG_IMX_USDHC imx_usdhc.c)
|
|
zephyr_library_sources_ifdef(CONFIG_SPI_SDHC sdhc_spi.c)
|
|
zephyr_library_sources_ifdef(CONFIG_MCUX_SDIF mcux_sdif.c)
|
|
zephyr_library_sources_ifdef(CONFIG_SAM_HSMCI sam_hsmci.c)
|
|
|
|
endif()
|