发布时间:2017-09-12 20:18:24
嵌入式系统中,对程序尺寸要求高时,可以使用本方法代码中,经常会有一种情况,库中并非所有函数都会用到。然而,无用的函数也最终被编译进可执行文件中了。为避免这一情况,可以在编译时,添加选项:-ffunction-sections -fdata-sections 。该选项让每个函数和数据独自一段在链接时,添加选项:-Wl,-gc-sections.........【阅读全文】
发布时间:2017-05-25 15:01:12
对于spi接口的NOR串行Flash来说,理论上24bit的地址模式只能支持最大到16MBytes空间。但是我们单板使用的MX25L25635是32MBytes,但使用的却是是24bit地址模式。仔细看datasheet,发现它使用了两个新命令RDEAR(read extended address register)和WREAR(write entended address register)。这样类似DDR的Bank的模式,通过扩展.........【阅读全文】
发布时间:2017-05-25 15:00:44
单板linux内核添加spi flash驱动后,在shell下敲reboot命令挂死。在内核中的reboot的系统调用中添加打印后,发现最后代码走到了对CPU的寄存器写,让CPU复位。好像看不出有任何问题。联想起之前的文章 "32M的spi接口Flash和24bit地址模式 " (http://blog.chinaunix.net/uid-26598889-id-4304874.html)。CPU启动时是按.........【阅读全文】
发布时间:2017-05-08 18:08:34
OverviewThis How-To is meant to be a starting point for people to learn how access to the uboot environment from userspace.This is my first wiki page so please be benevolent with the formatting :-)Tools neededIn order to modify the uboot environment variables from userspace w.........【阅读全文】