GPIO配置及按键扫描类似1题,以下为外部中断配置和中断服务程序的大体框架
u8 KeyValue;
/*
* 函数名:EXTI_PC11_Config
* 描述 :配置 PC11 为线中断口,并设置中断优先级
* 输入 :无
* 输出 :无
* 调用 :外部调用
*/
void EXTI_PE5_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
EXTI_InitTypeDef EXTI_InitStructure;
/* config the extiline(PC11) clock and AFIO clock */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC | RCC_APB2Periph_AFIO,ENABLE);
/* config the NVIC(PC11) */
NVIC_Configuration();
/* EXTI line gpio config(PC11) */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD; // 上拉输入
GPIO_Init(GPIOC, &GPIO_InitStructure);
/* EXTI line(PC11) mode config */
GPIO_EXTILineConfig(GPIO_PortSourceGPIOC, GPIO_PinSource11);
EXTI_InitStructure.EXTI_Line = EXTI_Line11;
EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling; //下降沿中断
EXTI_InitStructure.EXTI_LineCmd = ENABLE;
EXTI_Init(&EXTI_InitStructure);
}
KeyValue=KeyScan(GPIOC,CPIO_PIN_11);
void EXTI11_IRQHandler(void)
{
if(!KeyValue) //按键按下产生了EXTI Line中断
{
//控制 LED亮灭,取决于LED高低电平点亮方式,此处用低电平点亮
GPIO_WriteLow(GPIOD, GPIO_Pin_4);
EXTI_ClearITPendingBit(EXTI_Line11); //清除中断标志位
}
} |