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.

程序烧写进28030时出现编译不通过,提示RamfuncsLoadEnd等变量有问题。

使用的是F28030.cmd文件,在main函数之前添加了

extern Uint16 RamfuncsLoadStart;
extern Uint16 RamfuncsLoadEnd;
extern Uint16 RamfuncsRunStart;

然后在主函数里调用

MemCopy(&RamfuncsLoadStart, &RamfuncsLoadEnd, &RamfuncsRunStart);
InitFlash();

编译之后出现以下错误:

Description Resource Path Location Type
unresolved symbol _RamfuncsLoadEnd, first referenced in ./main.obj 

请问大神这个怎么解决???在线等