The user tracing backend allows one to implement weak symbols to perform user specific tracing, e.g gpio toggling or spi transactions. This adds a qemu sample that just does a simple printk for each of the traced functions, but could be changed to do whatever function the user desires. Signed-off-by: Bradley Bolen <bbolen@lexmark.com>
14 lines
362 B
CMake
14 lines
362 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
if(BOARD MATCHES "qemu_.*")
|
|
list(APPEND QEMU_EXTRA_FLAGS -serial file:channel0_0)
|
|
endif()
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(tracing_tests)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|
|
target_sources_ifdef(CONFIG_TRACING_USER app PRIVATE src/tracing_user.c)
|