This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
跑的例程是ti公司的controlSUITE里找到的。位置:“器件”->“Delfino F2837xD”->“代码示例”->“所有双核示例”->“RAM_management”
跑例程 显示正在运行,但是板子上面没有反应。运行成功的话应该是要两个led灯交互闪烁的。
代码来源放到这:代码来源
其中
extern uint16_t isrfuncLoadStart;
extern uint16_t isrfuncLoadEnd;
extern uint16_t isrfuncRunStart;
extern uint16_t isrfuncLoadSize;
这一段代码的来源
SECTIONS
{
/* Allocate program areas: */
isrfunc : LOAD = RAMD0 | RAMLS0 | RAMLS1 | RAMLS2 | RAMLS3 | RAMLS4,
RUN = RAMGS15,
LOAD_START(_isrfuncLoadStart),
LOAD_END(_isrfuncLoadEnd),
RUN_START(_isrfuncRunStart),
LOAD_SIZE(_isrfuncLoadSize),
PAGE = 0
}