I'm having shortage of space in
.ebss : > DRAML0 PAGE = 1
program will not fit into available memory. run placement with alignment/blocking fails for section ".ebss" size 0x15f8 page 1.
Can I assign .ebss to flash? The program builds but I'm not able to get timer interrupt running.
I have tried using:
#pragma CODE_SECTION(cpu_timer0_isr, "ramfuncs"); // in main file
ramfuncs : LOAD = FLASHA, // in cmd file
RUN = PRAML0,
LOAD_START(_RamfuncsLoadStart),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
PAGE = 0
The above didn't help.
Please help me to come over this.