You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

43 rivejä
514 B

  1. #ifndef __EXTI_H
  2. #define __EXTI_H
  3. /***********************头文件****************************/
  4. #include "sys.h"
  5. #include "delay.h"
  6. #include "led.h"
  7. #include "includes.h"
  8. /***********************宏函数****************************/
  9. #define KEY_IN PIin(4) //PI13 外部中断输入引脚
  10. #define KEY0 PIin(5) //PI15 外部输入1
  11. #define KEY1 PIin(6) //PI16 外部输入2
  12. /***********************函数声明****************************/
  13. void EXTIX_Init(void); //外部中断初始化
  14. #endif