stm32外部中斷進(jìn)入不了的原因分析
1.切記打開復(fù)用時鐘:RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
本文引用地址:http://m.butianyuan.cn/article/201611/318696.htm2.最好加上一個EXTI_GenerateSWInterrupt(EXTI_LineX);產(chǎn)生軟件中斷便于判斷是不是本來就配置錯誤;
3.開啟硬件仿真:
4.正確設(shè)置中斷向量地址:
#if defined (VECT_TAB_RAM)
/* Set the Vector Table base location at 0x20000000 */
NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0); //設(shè)置中斷向量在RAM
#else /* VECT_TAB_FLASH */
/* Set the Vector Table base location at 0x08000000 */
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0); //設(shè)置中斷向量在FLASH中
#endif
以上的幾種解決方案都是網(wǎng)絡(luò)上整理所得,再次感謝各位網(wǎng)友的貢獻(xiàn)!
評論