mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 01:22:25 +00:00
This commit implements a CTF-backend for Zephyr's tracing API. The CTF-backend itself is split in a middle-layer and a bottom-layer. - Middle-layer decides the payload in event transactions, - Bottom-layer implements the IO transport. A simple POSIX bottom-layer is provided so far. Signed-off-by: François Delawarde <fnde@oticon.com>
15 lines
258 B
CMake
15 lines
258 B
CMake
zephyr_include_directories_ifdef(CONFIG_TRACING include)
|
|
|
|
zephyr_sources_ifdef(
|
|
CONFIG_SEGGER_SYSTEMVIEW
|
|
sysview_config.c
|
|
sysview.c
|
|
)
|
|
|
|
zephyr_sources_ifdef(
|
|
CONFIG_TRACING_CPU_STATS
|
|
cpu_stats.c
|
|
)
|
|
|
|
add_subdirectory_ifdef(CONFIG_TRACING_CTF ctf)
|