当ELF文件包含很多gnu_extab*开头的section时(>100),会导致GDB在加载操作
时崩溃。通过创建一个section来对以该名称开头的所有section进行分组可以
解决该问题。
When ELF contains many sectios(>100) starting with name gnu_extab*,
will causing GDB to crash on load action. Solving the problem by
creating a section to group all sections which begin with that name.
Signed-off-by: Zhou Yanjie <zhouyanjie@zoho.com>
根据配置选择是否对LCD或触摸屏进行复位,在未使用LCD或触摸屏时可缩短
系统初始化时间。
Select whether to reset the LCD or touchpad according to the
configuration, and shorten the system initialization time
when the LCD or touchpad is not used.
Signed-off-by: Zhou Yanjie <zhouyanjie@zoho.com>
修复MMC DMA破坏中断向量内存位置的问题,因为这里没有其他链接描述符。
在程序较小时该问题不容易出现,因为此时中断向量保留在缓存中。
Fix for MMC DMA corrupting interrupt vectors' memory location since
there is no other link descriptor. This is not noticeable if the
program is small, because the interrupt vectors stay in cache.
Signed-off-by: Zhou Yanjie <zhouyanjie@zoho.com>
在配置引脚路由时需要将未使用的引脚配置为输入模式,
否则有可能同u-boot中的配置产生冲突。
Unused pins need to be configured as input mode when
configuring pin routing, otherwise there may be
conflicts with the configuration in u-boot.
Signed-off-by: Zhou Yanjie <zhouyanjie@zoho.com>
在第166行中,“rt_size_t length”应改为“rt_uint32_t length”。
在第200行中,“rt_size_t length”应改为“rt_uint32_t length”。
In line 166, "rt_size_t length" should be changed to "rt_uint32_t length".
In line 200, "rt_size_t length" should be changed to "rt_uint32_t length".
Signed-off-by: Zhou Yanjie <zhou_yan_jie@163.com>
在第36行中,“rt_size_t size”应改为“rt_uint32_t size”。
在第43行中,“rt_size_t size”应改为“rt_uint32_t size”。
In line 36, "rt_size_t size" should be changed to "rt_uint32_t size".
In line 43, "rt_size_t size" should be changed to "rt_uint32_t size".
Signed-off-by: Zhou Yanjie <zhou_yan_jie@163.com>
在第217行中,“(rt_uint32_t*)&keyId”应改为“(rt_ubase_t*)&keyId”。
In line 217, "(rt_uint32_t*)&keyId" should be changed to "(rt_ubase_t*)&keyId".
Signed-off-by: Zhou Yanjie <zhou_yan_jie@163.com>