mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 22:42:40 +00:00
Add a test for the device runtime API that makes sure most common usage scenarios behave as expected: - get + put - get + asynchronous put until suspended - get + asynchronous put + get (while suspend still ongoing) Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
9 lines
265 B
CMake
9 lines
265 B
CMake
# Copyright (c) 2021 Nordic Semiconductor ASA.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(device_runtime_api)
|
|
|
|
target_sources(app PRIVATE src/main.c src/test_driver.c)
|