Skip to main content
JSHAR.1890
Associate II
May 4, 2020
Question

Can we use reserved location of IVT ? I want to use this to verify if I'm downloading correct hex file even though checksum is passed?

  • May 4, 2020
  • 1 reply
  • 537 views

Can we use the reserved location of IVT as defined below 0x08000000

__vector_table
 DCD sfe(CSTACK)
 DCD Reset_Handler ; Reset Handler
 
 DCD NMI_Handler ; NMI Handler
 DCD HardFault_Handler ; Hard Fault Handler
 DCD MemManage_Handler ; MPU Fault Handler
 DCD BusFault_Handler ; Bus Fault Handler
 DCD UsageFault_Handler ; Usage Fault Handler
 DCD 0x08000000 ; Reserved
 DCD 0 ; Reserved
 DCD 0 ; Reserved

    This topic has been closed for replies.

    1 reply

    TDK
    May 4, 2020

    Yes. The CPU won't care about unused locations in the vector table as those interrupts should never get triggered.

    "If you feel a post has answered your question, please click ""Accept as Solution""."