This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/MSP432P401R: Interrupt vector table relocation

Part Number: MSP432P401R

Tool/software: Code Composer Studio

Dear team,

I want to do Interrupt vector table relocation. like:

Interrupt_setVectorTableAddress(0x00008000);

Is there anything else that needs to be modified? 

When I used ccs to debug the APP program, it helped me to flash the address 0x00000000 by default. After entering the debug mode, the APP program cannot run. How should I configure the debug environment of ccs when relocate Interrupt vector table?

  • Hi Susan,

    You need define a section at 0x00008000 to put your own interrupt vector table.

    And define a const interrupt vector table array with default ISR Handler, then call the Interrupt_setVectorTableAddress(0x00008000) function.

**Attention** This is a public forum