Part Number: LP-MSPM0G3507
I have a simple custom bootloader that simply jumps to the application at startup, however interrupts stop working after application takes over, everything else seems to work fine. Did anyone have the same issue and have a solution to it?
Thanks,
Mike
bootloader starts at 0x0000
DL_SYSTICK_disableInterrupt();
DL_SYSTICK_disable();
disable_interrupts();
SCB->VTOR = (volatile uint32_t) 0x4000;
jump_to_app(0x4000);
application memory starts at 0x4000

