Merge pull request #730 from TanekLiang/learn

[bsp] correct stm32f4xx flash vector table base location
This commit is contained in:
Bernard Xiong 2017-05-04 17:53:42 +08:00 committed by GitHub
commit c65fc02427
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ void rt_hw_board_init()
SCB->VTOR = (0x10000000 & NVIC_VTOR_MASK); SCB->VTOR = (0x10000000 & NVIC_VTOR_MASK);
#else /* VECT_TAB_FLASH */ #else /* VECT_TAB_FLASH */
/* Set the Vector Table base location at 0x00000000 */ /* Set the Vector Table base location at 0x00000000 */
SCB->VTOR = (0x00000000 & NVIC_VTOR_MASK); SCB->VTOR = (0x08000000 & NVIC_VTOR_MASK);
#endif #endif
HAL_Init(); HAL_Init();