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.

LAUNCHXL-F28379D: .cinit Flash memory issue, error code #10099-D

Part Number: LAUNCHXL-F28379D
Other Parts Discussed in Thread: C2000WARE

I am using F28379D and I want to embed the program into FLASH memory.

But the error code came out:

<a href="file:/C:/ti/ccs1200/ccs/tools/compiler/dmed/HTML/10099.html">#10099-D</a> 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. placement with alignment/blocking fails for section ".cinit" size 0x1e page 0. Available memory ranges:
.cinit : > FLASHB PAGE = 0, ALIGN(8)

So I reached to "2837xD_FLASH_lnk_cpu1.cmd" and modified the memory location of .cinit

Before: 

   .cinit              : > FLASHB      PAGE = 0, ALIGN(8)

After:

   .cinit              : > FLASHG     PAGE = 0, ALIGN(8)

The error code in the Console window had been removed, but another error code came out.

I also tried this ".cinit              : > FLASHB | FLASHC | FLASHD | FLASHE      PAGE = 0, ALIGN(8) "

but the same comment came out. "_system_post_cinit() 0x3FE493 (an error occurred: failed to parse the previous frame FP)"

What should I do to make it work?