自己在psarm换了一块16m的flash,由于不会调用,只能下4m的程序,又不行加sd卡,16勉强够用。
现在的做法是,在分区表开一个区个spiffs或者LITTLEFS做文件系统保存图片,让lvgl8.3直接解码显示。现在的进度是系统搞好了,图片也上传好了,就是白屏,感觉是路径的问题,试过顺便打一个名称,lvgl日志都没有报错。搞了一周时间都没有查到什么原因,吐了,只能能问一下各位大佬了。
下面是代码分析
首先确定LITTLEFS是可以用的
fs:: File file = LITTLEFS.open("/aaa.txt", "r");
if(!file){
Serial.println("Failed to open file for reading");
return;
}
--------------------------------------------------------
const char *filepath = "/I.png";
if (file_exists(filepath)) {
log_d("文件 '%s' 存在252。\n", filepath);
} else {
log_d("文件 '%s' 不存在或无法访问456。\n", filepath);
}
上传代码,读取txt和文件路径都是有的,感觉LITTLEFS应该是挂载上了
然后是lv_conf.h的配置
#define LV_USE_FS_POSIX 0
#if LV_USE_FS_POSIX
#define LV_FS_POSIX_LETTER 'S' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#define LV_FS_POSIX_PATH "" /*Set the working directory. File/directory paths will be appended to it.*/
#define LV_FS_POSIX_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
#endif
------------------------------
#define LV_USE_FS_FATFS 1
#if LV_USE_FS_FATFS
#define LV_FS_FATFS_LETTER 'A' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#define LV_FS_FATFS_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
#endif
---------------------------
#define LV_USE_PNG 1
这两个我都单独试过了,都不行
到图片显示这边
lv_obj_t *img_bg = lv_img_create(lv_scr_act());
lv_img_set_src(img_bg, "A:2:I0.png");
lv_obj_center(img_bg);
-----------------------------------------------------------------
ui->screen_4_img_2 = lv_img_create(ui->screen_4);
lv_obj_add_flag(ui->screen_4_img_2, LV_OBJ_FLAG_CLICKABLE);
lv_img_set_src(ui->screen_4_img_2, "A:2:I.png");
lv_img_set_pivot(ui->screen_4_img_2, 50,50);
lv_img_set_angle(ui->screen_4_img_2, 0);
lv_obj_set_pos(ui->screen_4_img_2, 0, 0);
lv_obj_set_size(ui->screen_4_img_2, 240, 240);
lv_obj_set_style_img_opa(ui->screen_4_img_2, 120, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_img_set_src(img_bg, "A:1:I.png");
lv_img_set_src(img_bg, "A:I.png");
lv_img_set_src(img_bg, "A:/I.png");
等都试过了,就是白屏,离谱
有没有大佬帮帮忙看看,吐了他也不报错没有日志
或者16m的现在只能用4m,有没有改变映射地址的例程
关于在lvgl显示png为空白的问题
-
- Posts: 1
- Joined: Tue Jul 09, 2024 7:23 am
Jump to
- English Forum
- Explore
- News
- General Discussion
- FAQ
- Documentation
- Documentation
- Sample Code
- Discussion Forum
- Hardware
- ESP-IDF
- ESP-BOX
- ESP-ADF
- ESP-MDF
- ESP-WHO
- ESP-SkaiNet
- ESP32 Arduino
- IDEs for ESP-IDF
- ESP-AT
- ESP IoT Solution
- ESP RainMaker
- Rust
- ESP8266
- Report Bugs
- Showcase
- Chinese Forum 中文社区
- 活动区
- 乐鑫活动专区
- 讨论区
- 全国大学生物联网设计竞赛乐鑫答疑专区
- ESP-IDF 中文讨论版
- 《ESP32-C3 物联网工程开发实战》书籍讨论版
- 中文文档讨论版
- ESP-AT 中文讨论版
- ESP-BOX 中文讨论版
- ESP IoT Solution 中文讨论版
- ESP-ADF 中文讨论版
- ESP Mesh 中文讨论版
- ESP Cloud 中文讨论版
- ESP-WHO 中文讨论版
- ESP-SkaiNet 中文讨论版
- ESP 生产支持讨论版
- 硬件问题讨论
- 项目展示
Who is online
Users browsing this forum: No registered users and 27 guests
- All times are UTC
- Top
- Delete cookies
About Us
Espressif Systems is a fabless semiconductor company providing cutting-edge low power WiFi SoCs and wireless solutions for wireless communications and Internet of Things applications. ESP8266EX and ESP32 are some of our products.