27 lines
527 B
C
27 lines
527 B
C
#ifndef LV_LOG_TO_ESP_H
|
|
#define LV_LOG_TO_ESP_H
|
|
|
|
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
|
#include "lvgl.h"
|
|
#else
|
|
#include "lvgl/lvgl.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
#include "sdkconfig.h"
|
|
#include <string.h>
|
|
#include <sys/unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <dirent.h> // 关键:包含 DIR 相关定义
|
|
#include <errno.h> // 错误码定义
|
|
#include <time.h> // 时间相关函数
|
|
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
|
|
#include "lv_conf.h"
|
|
|
|
void lv_log_to_esp_init();
|
|
|
|
#endif |