I currently have my linker command file setup like so...
.TI.ramfunc : {-l F021_API_CortexM3_LE.lib} LOAD = FLASHE,
RUN = C2,
LOAD_START(RamfuncsLoadStart),
LOAD_SIZE(RamfuncsLoadSize),
LOAD_END(RamfuncsLoadEnd),
RUN_START(RamfuncsRunStart),
RUN_SIZE(RamfuncsRunSize),
RUN_END(RamfuncsRunEnd),
PAGE = 0, ALIGN(8)
I am getting a "program will not" error. I am not clear on how to resolve it.
The map shows unused space in FLASHE and C2. Is it an alignment problem?
Suggestions welcome