按键按下没反应,我定义了两跟外部中断线,按理应该我无论按下哪个按钮都会触发相应的外部中断函数啊

2019-07-20 17:29发布

#include "exit.h"
#include "stm32f10x.h"
#include "delay.h"
#include "led.h"
#include "beep.h"

void Exit_Init(void)
{
       
        GPIO_InitTypeDef Keystruct;
        EXTI_InitTypeDef Exitstruct;
        NVIC_InitTypeDef NVICstruct;
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOE,ENABLE);
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
        Keystruct.GPIO_Mode=GPIO_Mode_IPU;
        Keystruct.GPIO_Pin=GPIO_Pin_3|GPIO_Pin_4;
        Keystruct.GPIO_Speed=GPIO_Speed_50MHz;
        GPIO_Init(GPIOE,&Keystruct);
        GPIO_SetBits(GPIOE,GPIO_Pin_4|GPIO_Pin_3);
       
        GPIO_EXTILineConfig(GPIO_PortSourceGPIOE,GPIO_PinSource4);
        GPIO_EXTILineConfig(GPIO_PortSourceGPIOE,GPIO_PinSource3);
       
        Exitstruct.EXTI_Line=EXTI_Line3;
        Exitstruct.EXTI_Line=EXTI_Line4;
        Exitstruct.EXTI_LineCmd=ENABLE;
        Exitstruct.EXTI_Mode=EXTI_Mode_Interrupt;
        Exitstruct.EXTI_Trigger=EXTI_Trigger_Falling;
        EXTI_Init(&Exitstruct);
       
        NVICstruct.NVIC_IRQChannel=EXTI3_IRQn;
        NVICstruct.NVIC_IRQChannelCmd=ENABLE;
        NVICstruct.NVIC_IRQChannelPreemptionPriority=2;
        NVICstruct.NVIC_IRQChannelSubPriority=2;
        NVIC_Init(&NVICstruct);
       
        NVICstruct.NVIC_IRQChannel=EXTI4_IRQn;
        NVICstruct.NVIC_IRQChannelCmd=ENABLE;
        NVICstruct.NVIC_IRQChannelPreemptionPriority=2;
        NVICstruct.NVIC_IRQChannelSubPriority=2;
        NVIC_Init(&NVICstruct);       
}

void EXTI3_IRQHandler(void)
{
        delay_ms(10);
        if(KEY0==0)
        {
                LED0=!LED0;
                LED1=!LED1;
        }
        EXTI_ClearITPendingBit(EXTI_Line3);
       
}

void EXTI4_IRQHandler(void)
{

        delay_ms(10);
        if(KEY1==0)
        {
                BEEP=!BEEP;
        }
        EXTI_ClearITPendingBit(EXTI_Line4);
}


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
wangzaiwudi
1楼-- · 2019-07-20 19:08
 精彩回答 2  元偷偷看……
taizonglai
2楼-- · 2019-07-20 19:56
看下图你自己去慢慢体会,你这种写法哪里不对!
VWQ]YCUF`)[8MK48HKGZ5S2.png
himalauas
3楼-- · 2019-07-20 23:59
楼上那两句改成Exitstruct.EXTI_Line=EXTI_Line3|EXTI_Line4;
wangzaiwudi
4楼-- · 2019-07-21 04:27
zuozhongkai 发表于 2017-1-7 14:46
看下图你自己去慢慢体会,你这种写法哪里不对!

感谢感谢!

一周热门 更多>