[code=c]#ifdef VECT_TAB_SRAM
SCB->VTOR = SRAM_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM. */
#else
SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal FLASH. */
#endif[/code]
在上面的代码中一个是将中断向量表重定义到 SRAM中,一个是重定义到 Flash中,但设置偏移量是什么意思,为什么要偏移?偏移的大小是 0x0200的整数倍我知道,就是不明白偏移的作用 |