Hi TI community,
I would increase the ramfunc size on a TMS320F28069M to fit 2 interrupts inside.
The current size (RAML0 + RAML1) is not enough. (code : RAML0_1 : origin = 0x008000, length = 0x000C00 and
ramfuncs : LOAD = FLASH_D_H,
RUN = RAML0_1,
LOAD_START(_RamfuncsLoadStart),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
PAGE = 0
I tried to increase the size while using RAML2 and RAML3. But it does not work (they are not on the same page). (code RAML0_3 : origin = 0x008000, length = 0x800 + 2 * 0x400 + 0x1000 and
ramfuncs : LOAD = FLASH_D_H,
RUN = RAML0_3,
LOAD_START(_RamfuncsLoadStart),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
PAGE = 0
How can I do ?
Many thanks