Tool/software: TI C/C++ Compiler
I get the following error in the console window.
Description Resource Path Location Type
<a href="processors.wiki.ti.com/.../10099"> program will not fit into available memory. placement with alignment fails for section ".cinit" size 0x2c1 . Available memory ranges: lnk_msp430f6659.cmd /DM10-10-18Project line 152 C/C++ Problem
/lnk_msp430f6659.cmd", line 152: error #10099-D: program will not fit into available memory. placement with alignment fails for section ".cinit" size 0x2c1 . Available memory ranges:
FLASH size: 0x7f80 unused: 0x0 max hole: 0x0
If I change the link command file from this;
.cinit : {} > FLASH /* Initialization tables
to;
.cinit : {} > FLASH2 /* Initialization tables
it compiles, but I don't know if that is okay to do? I want to be able to download new firmware from the built in USB BSL, so I dont want to step on any memory that is reserved for that?
Please help.
Thanks