Hi all:
My project uses bootloader and a app with ucosIII. Bootloader I deposited it in flash 0x0 -0x7fff. My app is stored in 0x8000.
But after bootloader jumps to the App entry address, APP is unable to run. I look at some relevant examples.
There is a hint that I need to set interrupt vector table addresses at the entrance of the main program.
For example, MSP430: SCB->VTOR = FLASH_BASE | 0x10000;
For example, STM32: NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x8000);
Is there a similar way for TM4C123 to let me set up the interrupt vector table address in the application? Thank you very much!