IMXRT1010 vector table address

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

IMXRT1010 vector table address

358 Views
LuigiV
Contributor II

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

0 Kudos
3 Replies

296 Views
Gavin_Jia
NXP TechSupport
NXP TechSupport

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

0 Kudos

208 Views
lpcxpresso_supp
NXP Employee
NXP Employee

I'd say Image Info view would also be useful - go to Window => Show View => Other => Image Info.

Regards,
MCUXpresso IDE Support

0 Kudos

321 Views
pandi
Contributor III

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

0 Kudos