摘要: system_stm32f2xx.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 extern unsigned int __vector_table; SCB->VTOR = (unsigned int 阅读全文
posted @ 2014-02-25 19:40 IAmAProgrammer 阅读(1108) 评论(0) 推荐(0) 编辑