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/MSP430FR5994: CCS/MSP430FR5994

Part Number: MSP430FR5994

Tool/software: Code Composer Studio

Hi,

My project builds (compiles) but doesn't link because of these errors?

error #10099-D: program will not fit into available memory, or the section contains a call site that requires a trampoline that can't be generated for this section. run placement with alignment fails for section ".TI.bound:aes_keys" size 0x60, overlaps with ".TI.bound:ten4_mirror_stack", size 0xf4 (page 0)

In my code I have been using the #pragma LOCATIO(x, addr) to link data in the FRAM space. 

Craig

  • You applied #pragma LOCATION to the aggregate variables (probably arrays) aes_keys and ten4_mirror_stack.  They overlap in memory.  The base address of one, plus its size, goes past the base address of the other.

    Thanks and regards,

    -George