野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 12288|回复: 1

做外部中断实验,请问是怎么设置外部中断输入的

[复制链接]
发表于 2016-7-26 11:27:44 | 显示全部楼层 |阅读模式
用的是mini v3 的板子
做外部中断实验,请问,这是怎么设置PA0端口作为外部中断输入的,如果要设置PC13为外部中断输入,应该怎么修改,谢谢,下面是光盘里的源程序代码。
void EXTI_Pxy_Config(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        EXTI_InitTypeDef EXTI_InitStructure;

        /* config the extiline clock and AFIO clock */
        RCC_APB2PeriphClockCmd(macEXTI_GPIO_CLK,ENABLE);
                                                                                               
        /* config the NVIC */
        NVIC_Configuration();

        /* EXTI line gpio config*/       
  GPIO_InitStructure.GPIO_Pin = macEXTI_GPIO_PIN;      
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;         // ÏÂà-êäèë
  GPIO_Init(macEXTI_GPIO_PORT, &GPIO_InitStructure);

        /* EXTI line mode config */
  GPIO_EXTILineConfig(macEXTI_SOURCE_PORT, macEXTI_SOURCE_PIN);
  EXTI_InitStructure.EXTI_Line = macEXTI_LINE;
  EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
  EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Rising; //éÏéyÑØÖD¶Ï
  EXTI_InitStructure.EXTI_LineCmd = ENABLE;
  EXTI_Init(&EXTI_InitStructure);
}



int main(void)
{       
        /* config the led */
        LED_GPIO_Config();
        LED1_ON;
       
        CLI();
        SEI();
       
        /* exti line config */
        EXTI_Pxy_Config();
       
        /* wait interrupt */
        while(1)                           
        {
        }
}


回复

使用道具 举报

发表于 2016-7-26 11:52:44 | 显示全部楼层
修改引脚号,中断源,中断服务函数
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-14 15:09 , Processed in 0.028540 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表