RT
或者其他的GD可参考的,感激不尽
我这边现在的问题是一跳转就进入硬件错误,不知道是APP的问题还是跳转指令的问题
测试时是在boot里直接跳转,包括打开或注释掉前两句都试过,都是不行
__set_MSP(*(__IO uint32_t*) 0x08004000);
//nvic_vector_table_set(NVIC_VECTTAB_FLASH,0x4000);
((void(*)())(0x08004004))();
/*!
\brief this function handles HardFault exception
\param[in] none
\param[out] none
\retval none
*/
void HardFault_Handler(void)
{
/* if Hard Fault exception occurs, go to infinite loop */
while (1);
}
离线