ESP_LOGI怎么显示时间
时间: 2024-01-31 21:02:17 浏览: 204
ESP_LOGI可以通过在日志消息中添加时间戳来显示时间。可以使用FreeRTOS提供的vTaskDelayUntil函数来实现定时器。下面是一个示例代码:
```
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_timer.h"
static const char *TAG = "example";
void app_main(void)
{
esp_log_level_set(TAG, ESP_LOG_INFO);
while (1) {
uint64_t now = esp_timer_get_time();
uint32_t seconds = (uint32_t)(now / 1000000);
uint32_t milliseconds = (uint32_t)(now / 1000) % 1000;
ESP_LOGI(TAG, "[%02d:%02d:%02d.%03d] Hello, world!", seconds / 3600, (seconds / 60) % 60, seconds % 60, milliseconds);
vTaskDelayUntil(&(TickType_t){0}, 1000 / portTICK_PERIOD_MS);
}
}
```
在这个示例代码中,我们使用esp_timer_get_time函数获取当前的时间戳,然后将其转换为秒和毫秒的格式。然后我们使用ESP_LOGI来输出日志消息,并在消息中包含时间戳。最后,我们使用vTaskDelayUntil函数来延迟1秒钟,以便每秒钟输出一次日志消息。
阅读全文