CCS has a problem when I compile one example code.It reports one undefined symbol "myStartupFxn"
But my code doesn't use myStartupFxn.I don't know what's the reason.
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.
CCS has a problem when I compile one example code.It reports one undefined symbol "myStartupFxn"
But my code doesn't use myStartupFxn.I don't know what's the reason.
Hi
That is because maybe you have used a cfg file which include the instruction like "Startup.firstFxns.$add('&myStartupFxn');" or "Startup,firstFxns[Startup,firstFxns.length++]" = "&myStartupFxn";
If you don't need the addition of customized startup functions, just delete the instruction. Or add your myStartupFxn function in application code if you want to use that.