STM32F207外部中断进不去的现象,大家伙帮忙看看。

2019-03-23 18:40发布

本帖最后由 jinghong21 于 2015-3-26 11:12 编辑

这个代码是很简单的一个外部中断初始化的代码,我对比了固件函数库,但是就是进不去外部中断函数,大家帮我看一看这个是哪里出了问题。

GPIOA_10这个脚是有脉冲进来的。




是不是一定GPIO10只能对应 EXTI10这样子。


void EXTIInit()
{
          EXTI_InitTypeDef   EXTI_InitStructure;
          GPIO_InitTypeDef   GPIO_InitStructure;
          NVIC_InitTypeDef   NVIC_InitStructure;

          /* Enable GPIOA clock */
          RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);                                                                  
          /* Enable SYSCFG clock */
          RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE);
  
          /* Configure PA8 pin as input floating */
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;        //选择输入模式
          GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;        //选择上拉
          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;                //选择io
          GPIO_Init(GPIOA, &GPIO_InitStructure);

          /* Connect EXTI Line0 to PA8 pin */
          SYSCFG_EXTILineConfig(EXTI_PortSourceGPIOA, EXTI_PinSource10);

          /* Configure EXTI Line0 */
          EXTI_InitStructure.EXTI_Line = EXTI_Line0;                           //选择路径0
          EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;           //选择中断模式
          EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;  //选择下降沿触发
          EXTI_InitStructure.EXTI_LineCmd = ENABLE;                                   //使能中断
          EXTI_Init(&EXTI_InitStructure);

          /* Enable and set EXTI Line0 Interrupt to the lowest priority */
          NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQn;
          NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0x00;
          NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0x00;
          NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
          NVIC_Init(&NVIC_InitStructure);
}


int main()
{
        LEDInit();
        EXTIInit();
        while(1)
        {
                GPIO_SetBits(GPIOB,GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7);
        }
}

void EXIT0_IRQHandler()
{
//        if(SET==EXTI_GetITStatus(EXTI_Line0))
//        {
                GPIO_ResetBits(GPIOB,GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7);        
//        }
}
此帖出自小平头技术问答
0条回答

一周热门 更多>