I'm developing a project using the IMXRT1010 SDK and the MCUXpresso IDE, is there a way to know the address where it locates the interrupt vector table ?
Thank you
Luigi
Hi @LuigiV ,
You can check the linker script file after build. Or confirm the address by looking at the registers.
uint32_t vtor = SCB->VTOR;
PRINTF("The vector table address is 0x%x\r\n", vtor);
Best regards,
Gavin
I'd say Image Info view would also be useful - go to Window => Show View => Other => Image Info.
Regards,
MCUXpresso IDE Support
Hi,check the cortex manual of your controller there will be a seperate section for vector table there you can find the address of vector table
Regards,
Pandi