https://blog.csdn.net/Higashino_Keigo/article/details/88738160
参考这个数组,成像,想进行LCD_Color_Fill(1,1,LOGO_W,LOGO_H,color); //指定区域填充色块(color为色块数组)到显示屏读取速度的一个测试。
内存没有有问题可以实现,但是想把数据放在外存。因此参考内存管理的例程,或者用读卡器实验将这个文件放到SRAM里面,采用的是u16 color[304*154] __attribute__((at(0X68000000)))
然后出现了
No Algorithm found for: 68000000H - 6800FA07H
Partial Erase Done (areas with no algorithms skipped!)
No Algorithm found for: 68000000H - 6800FA07H
Partial Programming Done (areas with no algorithms skipped!)
Partial Verify OK (areas with no algorithms skipped!)
这个问题始终无法解决,不是烧写的问题,一定是函数本身的问题,但是具体问题出现在哪?没有弄清楚,希望前辈指点,我附上原始代码,其中就
//掉了u16 color[304*154] __attribute__((at(0X68000000))),代码上u16 color[304*154]正常运行,
u16 color[304*154] __attribute__((at(0X68000000)))无法解决。