Part Number: TMS320F28388D
Hello everyone,
could you please explain why 1) isn't working while 2) does?
1)
MEMORY{
...
RAMLS0 : origin = 0x008000, length = 0x000800
RAMLS1 : origin = 0x008800, length = 0x000800
...
}
SECTIONS{
...
PARAMS_ACTIVE_CPU_CLA_SHARED : >> RAMLS0 | RAMLS1
...
}
Generates Linker-Error:
"../Linker CMD/2838x_RAM_CLA_lnk_cpu2.cmd", line 130: 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/blocking fails for section "PARAMS_ACTIVE_CPU_CLA_SHARED" size 0x8f5page 0. Available memory ranges:
RAMLS0 size: 0x800 unused: 0x800 max hole: 0x800
RAMLS1 size: 0x800 unused: 0x800 max hole: 0x800
2)
MEMORY{
...
RAMLS01 : origin = 0x008000, length = 0x000100
...
}
SECTIONS{
...
PARAMS_ACTIVE_CPU_CLA_SHARED : > RAMLS01
...
}
Thanks and Regards,
Marcel.