This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
68361eacfa
zephyr
/
samples
/
subsys
/
tracing
/
prj_user.conf
4 lines
67 B
Plaintext
Raw
Normal View
History
Unescape
Escape
samples: tracing: Add a sample for tracing_user 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>
2021-08-03 23:58:52 +08:00
CONFIG_TRACING=y
CONFIG_TRACING_USER=y
tracing: Fix tracing_user config `tracing_user.h` lost several definitions, which made CONFIG_TRACING_USER build fail. This fixes the TRACING_USER config & adds it to the test case. Moreover, the idle task stack is overflow on qemu_x86, qemu_cortex_m0 & qemu_riscv64. This makes the test fail. So this commit sets the idle stack size to 2048 for this sample to avoid it. Signed-off-by: Wealian Liao <WHLIAO@nuvoton.com>
2021-12-21 16:57:02 +08:00
CONFIG_IDLE_STACK_SIZE=2048