Enable runtime log filter——ULOG_BACKEND_USING_FILE(RT_USING_DFS):使能运行时的日志过滤器,即动态过滤。使能后,日志将支持按标签、关键词等方式,在系统运行时进行动态过滤。 Enable syslog format log and API——ULOG_USING_SYSLOG(ULOG_OUTPUT_TIME、ULOG_USING_FILTER) :使能 linux syslog API 及对应的日...
#define LOG_TAG "driver.timer"#define LOG_LVL LOG_LVL_DBG#includevoid Timer2_Handler(void){ /* enter interrupt */ rt_interrupt_enter(); LOG_D("I'm in timer2 ISR"); /* leave interrupt */ rt_interrupt_leave();}这里说明下中断日志在 ulog 处于同步模式与异步模式下的不同策略: -同步模...
count);LOG_I("LOG_I(%d): RT-Thread is an open source IoT operating system from China.",count);LOG_W("LOG_W(%d): RT-Thread is an open source IoT operating system from China.",count);LOG_E("LOG_E(%d): RT-Thread is an open ...
[*] Enable ulog/* 使能 ulog */Thestaticoutputloglevel./* 选择静态的日志输出级别。选择完成后,比设定级别低的日志(这里特指使用 LOG_X API 的日志)将不会被编译到 ROM 中 */[ ] Enable ISRlog./* 使能中断 ISR 日志,即在 ISR 中也可以使用日志输出 API */[*] Enable assert check./* 使能断言...
/* Select a static log output level. After the selection is completed, the log level lower than the set level (here specifically the log using the LOG_X API) will not be compiled into the ROM. */ [ ] Enable ISR log. /* Enable interrupted ISR log, ie log output API can also be ...
ulog 已集成中断日志的功能,但是默认没有开启,使用时打开 Enable ISR log 选项即可,日志的 API 与线程中使用的方式一致,例如: #define LOG_TAG "driver.timer" #define LOG_LVL LOG_LVL_DBG #include <ulog.h> void Timer2_Handler(void) { /* enter interrupt */ rt_interrupt_enter(); LOG_D("I'm...
[ ] Enable ISR log. /* 使能中断 ISR 日志,即在 ISR 中也可以使用日志输出 API */ [*] Enable assert check. /* 使能断言检查。关闭后,断言的日志将不会被编译到 ROM 中 */ (128) The log's max width. /* 日志的最大长度。由于 ulog 的日志 API 按行作为单位,所以这个长度也代表一行日志的最...
Enable ISR log——ULOG_USING_ISR_LOG:使能中断 ISR 日志,即在 ISR 中也可以使用日志输出 API 。 Enable assert check——ULOG_ASSERT_ENABLE:使能断言检查。关闭后,断言的日志将不会被编译到 ROM 中。 The log's max width——ULOG_LINE_BUF_SIZE:日志的最大长度。由于 ulog 的日志 API 按行作为单位,所...
[ ] Enable ISR log. /* 使能中断 ISR 日志,即在 ISR 中也可以使用日志输出 API */ [*] Enable assert check. /* 使能断言检查。关闭后,断言的日志将不会被编译到 ROM 中 */ (128) The log's max width. /* 日志的最大长度。由于 ulog 的日志 API 按行作为单位,所以这个长度也代表一行日志的最...