Part Number: TM4C129ENCPDT
Tool/software: Code Composer Studio
Hello! I'm new in TI MCU.
I have a project with bootloader.
When bootloader disabled, program works fine. All interrupts work well.
With bootloader I need relocate table of interrupts. But still I dont know how
In *.cmd file I have:
#define APP_BASE 0x00000000 //bootloader off
#define RAM_BASE 0x20000000
I change it to:
#define APP_BASE 0x00004000 //bootloader on
#define RAM_BASE 0x20000000
And:
SECTIONS
{
.intvecs: > APP_BASE
.text : > FLASH
.const : > FLASH
.cinit : > FLASH
.pinit : > FLASH
.init_array : > FLASH
.board_id : > (0x00004000 + 0x500)
.vtable : > 0x20000000
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}
__STACK_TOP = __stack + 512;
And this causes troubles (no working interrupts)
What I need do some else??
Thanks.