官网给的FLASH整个搬移RAM的例程里,需要搬移的部分
.cinit : LOAD = FLASH_AB, PAGE = 0 /* Load section to Flash */
RUN = RAM_H0, PAGE = 0 /* Run section from RAM */
LOAD_START(_cinit_loadstart),
RUN_START(_cinit_runstart),
SIZE(_cinit_size)
我在线调试的时候,RAMCMD文件自己分配的段配置
FFTipcb3 ALIGN(256) : {} > RAMH0 PAGE=1
FFTipcb4 ALIGN(256) : {} > RAMH0 PAGE=1
FFTmag : > RAMH0 PAGE=1
要把这个也做到放到FLASH里后自动搬移怎么改,需要改asm文件吗?
|