哪位佬能帮我看看中断哪里错了吗按键控制led流水灯

#include "stm32f10x.h"                  // Device header
#include "Delay.h"


void Key_Init(void)
{
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
    
    
    GPIO_InitTypeDef GPIO_InitStructure;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 ;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_Init(GPIOB, &GPIO_InitStructure);
    GPIO_ResetBits(GPIOB, GPIO_Pin_11);
    

    
}

int main(void)
{
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
    
    GPIO_InitTypeDef GPIO_InitStructure;
    GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
    GPIO_InitStructure.GPIO_Pin=GPIO_Pin_All;
    GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
    GPIO_Init(GPIOA,&GPIO_InitStructure);
    GPIO_Write(GPIOA,~0x0000);
    Key_Init();

    GPIO_EXTILineConfig(GPIO_PortSourceGPIOA, GPIO_PinSource11);
    
    EXTI_DeInit();
    EXTI_InitTypeDef EXTI_InitStructure;
    EXTI_InitStructure.EXTI_Line = EXTI_Line11;
    EXTI_InitStructure.EXTI_LineCmd = ENABLE;
    EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
    EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
    EXTI_Init(&EXTI_InitStructure);
    
    NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
    
    NVIC_InitTypeDef NVIC_InitStructure;
    NVIC_InitStructure.NVIC_IRQChannel = EXTI15_10_IRQn;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
    NVIC_Init(&NVIC_InitStructure);
    
    while(1)
    {
        if(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_11) == 1)    //    检查按键是否按下
        {
            Delay_ms (20);    //    消抖
            if(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_11) == 0)        //    再次判断按键是否按下
            Delay_ms (20);
            {
                if (GPIO_ReadOutputDataBit(GPIOA,GPIO_Pin_All ) == 1)
                {
                    while(1)
                    {
                        GPIO_Write(GPIOA,~0x0001);//0000 0000 0000 0001
                        Delay_ms(500);
                        GPIO_Write(GPIOA,~0x0002);//0000 0000 0000 0010
                        Delay_ms(500);
                        GPIO_Write(GPIOA,~0x0004);//0000 0000 0000 0100
                        Delay_ms(500);
                    }
                }
                
                
                    
                
            }
        }
    }
    
}

void EXTI15_10_IRQHandler(void)
{
    
    
    if (EXTI_GetITStatus(EXTI_Line11) )
    {
        
        if (GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_11) == 0)
        {
            
            
            GPIO_Write(GPIOA,0xFF);
            EXTI_ClearFlag(EXTI_Line11);
        }
        
    }
}

代码是上面 按键接的是pb11 但是没办法进入中断 不止这一个 写了很多个中断函数都没有办法使用
 


    
        
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值