I am trying to put bootloader and application code in the main memory of MSP430 5438 A.
I just need ideas and suggestions if what I am doing or thinking is right.
I am using the default linker file which comes with the CCS4 for the bootloader. The only change I did was to reduce the flash memory and removed FLASH2 memory, basically the memory above 10000.
for the application linker file , I had the FLASH from 10000. I reserved some ( 63 * 2) bytes in the end of the flash for the application interrupt vectors.
Now question I have when the interrupt comes, in the bootloader ISR i will have a flag whether to pass the interrupt to the application or not. If I have to pass the interrupt to application can I just say jump to the memory location reserved for that interrupt vector in the application flash area and that will automatically call the application ISR?