From 1f5a4ffe0280739a2ab938fad503f9ec22851fd4 Mon Sep 17 00:00:00 2001 From: armink Date: Wed, 29 Sep 2021 18:55:15 +0800 Subject: [PATCH] [utilities][ulog] Increase the usec check time. --- components/utilities/ulog/ulog.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/utilities/ulog/ulog.c b/components/utilities/ulog/ulog.c index 0e227e39f3..7925f0ccbf 100644 --- a/components/utilities/ulog/ulog.c +++ b/components/utilities/ulog/ulog.c @@ -268,6 +268,8 @@ RT_WEAK rt_size_t ulog_formater(char *log_buf, rt_uint32_t level, const char *ta } #endif /* ULOG_USING_COLOR */ + log_buf[log_len] = '\0'; + #ifdef ULOG_OUTPUT_TIME /* add time info */ { @@ -288,7 +290,7 @@ RT_WEAK rt_size_t ulog_formater(char *log_buf, rt_uint32_t level, const char *ta { long old_usec = now.tv_usec; /* delay some time for wait microseconds changed */ - rt_thread_delay(2); + rt_thread_mdelay(10); gettimeofday(&now, NULL); check_usec_support = RT_TRUE; /* the microseconds is not equal between two gettimeofday calls */