lv文件系统依然有问题 貌似是seek问题
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user