Part Number: TM4C123GH6PM
Other Parts Discussed in Thread: TMS570LC4357, RM57L843
Tool/software: TI C/C++ Compiler
I have a problem with the size of my code and I´m getting an error message:
Description Resource Path Location Type
<a href="processors.wiki.ti.com/.../10099"> program will not fit into available memory. run placement with alignment fails for section ".bss" size 0x656b8 . Available memory ranges: TM4C123GH6PM.cmd /UDMA_SSI_Project_2 line 55 C/C++ Problem
Description Resource Path Location Type
<a href="processors.wiki.ti.com/.../10099"> program will not fit into available memory. run placement with alignment fails for section ".data" size 0x1f252 . Available memory ranges: TM4C123GH6PM.cmd /UDMA_SSI_Project_2 line 54 C/C++ Problem
MEMORY
{
FLASH (RX) : origin = 0x00000000, length = 0x00040000
SRAM (RWX) : origin = 0x20000000, length = 0x00008000
}
/* Section allocation in memory */
SECTIONS
{
.text : > FLASH
#ifdef __TI_COMPILER_VERSION__
#if __TI_COMPILER_VERSION__ >= 15009000
.TI.ramfunc : {} load=FLASH, run=SRAM, table(BINIT)
#endif
#endif
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}
What can I do?