1. 首页
  2. 网络技术
  3. 网络监控
  4. CC2530基础中断方式按键控制灯

CC2530基础中断方式按键控制灯

上传者: 2020-12-05 20:36:44上传 ZIP文件 22.14KB 热度 8次
/* 如果按键按下时间小于1秒,则切换灯的闪烁效果 如果按键按下时间大于1秒,则不切换灯的闪烁效果 */ #include #define D3 P1_0 #define D4 P1_1 #define SW1 P1_2 #define D5 P1_3 #define D6 P1_4 unsigned char flag=0; void inline delay(unsigned int time) //因为中断调用了此函数, //所以要使用内联函数inline修饰 { unsign
用户评论