|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
本帖最后由 cjsb37 于 2013-4-29 08:57 编辑
程序编译通过,但load后总是出现这一问题:
Trouble running Target CPU: EMIF: Access to 0xcdf8 is not expected in mode 1
我没用到外部存储器,以前也出现过,好像是dsp选型出错了,改了就好了。
我检查了dsp的型号,应该没错。
这是我的cmd文件:
-c
-heap 0x2000
-stack 0x4000
MEMORY
{
VECS: org = 0h, len = 0x220
IRAM: org = 0x00000220, len = 0x0000FDC0 /*internal memory*/
SDRAM: org = 0x80000000, len = 0x01000000 /*external memory*/
FLASH: org = 0x90000000, len = 0x00020000 /*flash memory*/
}
SECTIONS
{
vectors :> VECS
.text :> IRAM
.bss :> IRAM
.cinit :> IRAM
.stack :> IRAM
.sysmem :> SDRAM
.const :> IRAM
.switch :> IRAM
.far :> SDRAM
.cio :> SDRAM
}
|
|