Home
last modified time | relevance | path

Searched refs:CONFIG_CPU_LOAD_LOG_PERIODICALLY (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/subsys/debug/
Dcpu_load.c15 #ifndef CONFIG_CPU_LOAD_LOG_PERIODICALLY
16 #define CONFIG_CPU_LOAD_LOG_PERIODICALLY 0 macro
29 if (CONFIG_CPU_LOAD_LOG_PERIODICALLY == 0) { in cpu_load_log_control()
35 k_work_schedule(&cpu_load_log, K_MSEC(CONFIG_CPU_LOAD_LOG_PERIODICALLY)); in cpu_load_log_control()
41 #if CONFIG_CPU_LOAD_USE_COUNTER || CONFIG_CPU_LOAD_LOG_PERIODICALLY
61 if (CONFIG_CPU_LOAD_LOG_PERIODICALLY > 0) { in cpu_load_init()
63 return k_work_schedule(&cpu_load_log, K_MSEC(CONFIG_CPU_LOAD_LOG_PERIODICALLY)); in cpu_load_init()
/Zephyr-latest/tests/subsys/debug/cpu_load/src/
Dmain.c22 if (CONFIG_CPU_LOAD_LOG_PERIODICALLY > 0) { in ZTEST()
46 #if CONFIG_CPU_LOAD_LOG_PERIODICALLY > 0
81 k_msleep(3 * CONFIG_CPU_LOAD_LOG_PERIODICALLY); in ZTEST()
87 k_msleep(3 * CONFIG_CPU_LOAD_LOG_PERIODICALLY); in ZTEST()
91 k_msleep(3 * CONFIG_CPU_LOAD_LOG_PERIODICALLY); in ZTEST()
/Zephyr-latest/doc/services/debugging/
Dcpu_load.rst14 …g a logging message. Period is configured using :kconfig:option:`CONFIG_CPU_LOAD_LOG_PERIODICALLY`.