Add test to verify SDIO subsystem. Note that due to the nature of SDIO cards, this test only reads from common registers and does not verify extended reads or writes. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
8 lines
234 B
CMake
8 lines
234 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(sdmmc_subsys_test)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|