请问,当我用rts2800_fl040830.lib和FLASH.CMD编译时,出现以下警告:
>> E:\DSP\text\sun4_IQ - flash\FLASH.cmd, line 82: warning:
(.const) not found
>> warning: load address of uninitialized section .const ignored
但是cmd文件里却已经这样定义:
.const: load = FLASHB PAGE 0, run = RAML0L1 PAGE 1
{
/* Get Run Address */
__const_run = .;
/* Mark Load Address*/
*(.c_mark)
/* Allocate .const */
*(.const)
/* Compute Length */
__const_length = .-__const_run;
}
烧写进芯片还是无法正常运行,请问怎么解决?