3ab10f2d52
Hardware has asynchronous actions where the expectation is to spin on registers and expressions against those registers for completion of the action. This provides a common macro to spin, with a delay and timeout, on such expressions. Signed-off-by: Tom Burdick <thomas.burdick@intel.com>
11 lines
210 B
CMake
11 lines
210 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(sys_util)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
src/wait_for.c
|
|
)
|