lv文件系统依然有问题 貌似是seek问题

This commit is contained in:
2026-02-21 02:24:47 +08:00
parent e24f80b3fc
commit a7dabdb925
12 changed files with 259 additions and 51 deletions
+27
View File
@@ -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