本文主要是介绍rtthread TouchGFX(二)SD卡文件系统读取图片,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考链接
https://support.touchgfx.com/docs/development/scenarios/using-serial-flash
https://blog.csdn.net/weixin_42487906/article/details/119743770
https://blog.csdn.net/sinat_31039061/article/details/109763842
一、env配置SDIO文件系统
之前文章已经讲过了,可以参考,这里我在重复一遍
二、从文件系统中读取图片资源
1.文件系统挂载
我们需要文件系统挂载SD卡,所以可以直接去掉工程中的mnt.c文件,或者屏蔽掉INIT_ENV_EXPORT初始化
2.修改链接脚本
默认情况下,TouchGFX中的所有位图都放入ExtFlashSection中,标准的链接描述文件(此处为GCC)将其他只读数据一起放入闪存。在此示例中,我们将图像数据放入地址为0x90000000的ExtFlashSection中。您可以选择任何其他未使用的地址(不属于代码或数据地址空间的一部分)。
link.sct
; *************************************************************
; *** Scatter-Loading Description File generated by uVision ***
; *************************************************************LR_IROM1 0x08000000 0x00100000 { ; load region size_regionER_IROM1 0x08000000 0x00100000 { ; load address = execution address*.o (RESET, +First)*(InRoot$$Sections).ANY (+RO).ANY (+XO)*.o (TextFlashSection)*.o (FontFlashSection)}RW_IRAM1 0x20000000 0x00040000 { ; RW data.ANY (+RW +ZI)}RW_SDRAM 0xC0200000 UNINIT 0x01E00000 { ; RW data*.o (TouchGFX_Framebuffer)}
}LR_EROM1 0x90000000 0x02000000 { ; load region size_regionIMAGE.BIN 0x90000000 0x02000000 { ; load address = execution address*.o (ExtFlashSection)}
}
编译后,我们可以通过检查映射文件(rt-thread.map)来检查位图的地址。表明了每一个图片的具体映射地址
3.生成IMAGE.BIN文件
我们需要从SD卡读取图片信息。用keil生成IMAGE.BIN文件
BinFile是存放.bin文件的文件夹名
如果生成多个bin文件,这里就写文件夹名,如果只生成一个bin文件,这里就写XX.BIN文件名
C:\Keil_v5\ARM\ARMCC\bin\fromelf.exe --bin -o .\BinFile .\build\keil\Obj\rt-thread.axf
生成的bin文件名和bin文件个数取决于链接脚本
4.修改BlockCopy功能
在TouchGFXHAL.cpp中修改blockcopy函数
当您将位图缓存到RAM时,TouchGFX会调用HAL :: BlockCopy来获取数据。
为了将其链接到SD卡或者nor flash上的数据,我们可以在您的特定HAL类中实现一个新的BlockCopy。在这里,我们假设该类称为TouchGFXHAL(由TouchGFX Generator生成)。
首先在SD卡中寻找IMAGE.BIN,如果没有挂载SD卡,则在nor flash中,flash这部分代码没有验证
#include "dfs_posix.h"
bool TouchGFXHAL::blockCopy(void* RESTRICT dest, const void* RESTRICT src, uint32_t numBytes)
{uint32_t dataOffset = (uint32_t) src;if (dataOffset >= 0x90000000 && dataOffset < 0x92000000){int fd;struct statfs buffer;if (rt_device_find("sd0") != RT_NULL){if ((dfs_statfs("/", &buffer) == RT_EOK) | (dfs_mount("sd0", "/", "elm", 0, 0) == RT_EOK)){fd = open("/images/IMAGE.BIN", O_RDONLY, 0);if (fd < 0){//rt_kprintf("open file from sdcard failed,find from /flash\n");}else{dataOffset = dataOffset - 0x90000000;lseek(fd, dataOffset, SEEK_SET);// for copying data from there.read(fd, (uint8_t *) dest, numBytes);close(fd);return true;}}}if (dfs_statfs("/flash", &buffer) == RT_EOK){fd = open("/flash/images.bin", O_RDONLY, 0);if (fd < 0){rt_kprintf("open file for read failed\n");return false;}dataOffset = dataOffset - 0x90000000;lseek(fd, dataOffset, SEEK_SET);// for copying data from there.read(fd, (uint8_t *) dest, numBytes);close(fd);return true;}else{return false;}}else{// For all other addresses, just use the default implementation.// This is important, as blockCopy is also used for other things in the core framework.return TouchGFXGeneratedHAL::blockCopy(dest, src, numBytes);}
}
5.将位图数据从闪存复制到缓存
在TouchGFXHAL.cpp中启用和配置位图缓存。首先,需要删除默认创建的位图缓存数据库,然后根据提供的存储区域设置新的缓存。
void TouchGFXHAL::initialize()
{// Calling parent implementation of initialize().//// To overwrite the generated implementation, omit call to parent function// and implemented needed functionality here.// Please note, HAL::initialize() must be called to initialize the framework.TouchGFXGeneratedHAL::initialize();uint16_t* frameBuf = (uint16_t*)rt_malloc(0x1400000);uint32_t cacheSize = 0x1400000;Bitmap::removeCache();Bitmap::setCache(frameBuf, cacheSize, 1024);Bitmap::cacheAll();
}
将bin文件和图片拷入SD卡
工程中图片位置在\packages\touchgfx2rtt-latest\TouchGFX\assets\images
编译烧写后,发现程序报错,touchgfx初始化有问题,查看代码后发现touchgfx采用INIT_APP_INIT自动初始化机制,这种机制不能准确定义各个模块初始化的顺序,这个模块可能是初始化的太早了,于是注释掉INIT_APP_INIT,并且在main函数中调用TouchGFXTask();
在TouchGFXTask();前还要加了一段延时,TouchGFX需要SD卡初始化完成,才能启动,否则程序会报错
记得在main函数开始处添加extern
extern void TouchGFXTask();int main(void)
{int count = 1;/* set LED0 pin mode to output */rt_pin_mode(LED0_PIN, PIN_MODE_OUTPUT);rt_thread_mdelay(700);TouchGFXTask();while (count++){rt_pin_write(LED0_PIN, PIN_HIGH);rt_thread_mdelay(500);rt_pin_write(LED0_PIN, PIN_LOW);rt_thread_mdelay(500);}return RT_EOK;
}
烧写后正常,SD卡也挂载正常,
这篇关于rtthread TouchGFX(二)SD卡文件系统读取图片的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!