请问专家:
我用样板工程Example_28335_Flash 加入程序文件.编译出错如下:
"C:/
ti/controlSUITE/device_support/f2833x/v132/DSP2833x_common/cmd/F28335.cmd", line 144: error:
run placement fails for object ".ebss", size 0x3089 (page 1). Available
ranges:
RAML4 size: 0x1000 unused: 0x1000 max hole: 0x1000
.ebss : > RAML4 PAGE = 1 /* */
warning: entry-point symbol other than "_c_int00" specified: "code_start"
error: errors encountered during linking; "Example_28335_Flash.out" not built
如果我把 F28335.cmd 中 .ebss : > RAML4 PAGE = 1 改为 .ebss : > FLASHB PAGE = 1
编译能通过.只有提示:warning: entry-point symbol other than "_c_int00" specified: "code_start"
但
仿真运行时出现下面问题:
C28xx: AutoRun: Target not run as breakpoint could not be set: Error programming AET Job: This task cannot be accomplished with the existing AET resources.
code_start:
.if WD_DISABLE == 1
LB wd_disable ;Branch to watchdog disable code -----程序进入到这个位置
.else
LB _c_int00 ;Branch to start of boot.asm in RTS library
.endif
再往下就不确定了.应怎么解决呢?