Part Number: TM4C123GH6PM
Hi,
I am new to this TI Community, forgive me if my questionnaire is wrong. I am trying to write two app in the flash memory and boot anyone through reading the eeprom data . I have partially done with booting using
IntMasterDisable();
HWREG(NVIC_VTABLE) = 0x0001f7e8;
__asm(" ldr r1, [r0]\n"
" mov sp, r1");
__asm(" ldr r0, [r0, #4]\n"
" bx r0\n");
in the above case all my interrupts are disabled.
My question is
1) How can i re-enable my interrupts in my app?
2) How to read eeprom value in my boot loader program?
Thank you in advance,
Prakash