[经验分享] 第4步呼吸灯按键功能实现

qi777ji   2018-9-23 10:33 楼主
建立完工程各项准备终于可以开始项目了,首先准备熟悉一下开发板按列子实现LED和按键功能,
1。分别修改编写2个功能文件,需要配置好SysTick及相关文件按开发板修改调用这些初始化文件
    /* ÅäÖÃconfigure systick */
    systick_config();
    EvbLedConfig();  
EvbKeyConfigPoll();       
8.png


  1. #include "350dx_led.h"
  2. #include "350dx_uart.h"
  3. #include "350dx_key.h"
  4. #include "systick.h"
  5. #include "main.h"
  6. #include <stdio.h>
  7. #include "gd32f3x0_rcu.h"
  8. //#include "gd32f3x0.h"
  9. //#include "gd32f3x0_it.h"
  10. void led_spark(void)
  11. {        //呼吸灯
  12.     static __IO uint32_t timingdelaylocal = 0U;

  13.     if(timingdelaylocal){

  14.         if(timingdelaylocal < 500U){
  15.                 EvbLedControl(LED1, LED_ON);
  16.         EvbLedControl(LED2, LED_ON);
  17.         EvbLedControl(LED3, LED_ON);
  18.         }else{
  19.                     EvbLedControl(LED1, LED_OFF);
  20.         EvbLedControl(LED2, LED_OFF);
  21.         EvbLedControl(LED3, LED_OFF);
  22.         }

  23.         timingdelaylocal--;
  24.     }else{
  25.         timingdelaylocal = 1000U;
  26.     }
  27. }    // */
  28. int main(void)
  29. {
  30.     int i;
  31.         /* 配置configure systick */
  32.     systick_config();
  33.     EvbLedConfig();  //初始化LED

  34.         EvbKeyConfigPoll();        //初始化按键
  35.        
  36.        
  37.         rcu_ckout_config(RCU_CKOUTSRC_CKSYS, RCU_CKOUT_DIV1);
  38.     while(1)
  39.     {
  40.                 delay_1ms(500);        //500 X 1ms=500ms,1000u时
  41.         //for (i =0;  i<0xffffff; i++);   //延时     
  42.         EvbLedControl(LED1, LED_ON);
  43.         EvbLedControl(LED2, LED_ON);
  44.         EvbLedControl(LED3, LED_ON);
  45.         
  46.                 delay_1ms(500);
  47.        // for (i =0;  i<0xffffff; i++);  //延时
  48.         EvbLedControl(LED1, LED_OFF);
  49.         EvbLedControl(LED2, LED_OFF);
  50.         EvbLedControl(LED3, LED_OFF);
  51.                
  52.                  //EvbUart1WriteStr("Hello ZhanglinGD32F\r");
  53.                 if (EvbKeyScanPoll() == 1)  //按键是否按下
  54.                 {  
  55.                                  EvbLedControl(LED1, LED_ON);
  56.         EvbLedControl(LED2, LED_ON);
  57.         EvbLedControl(LED3, LED_ON);
  58.                 }  
  59.                  //else
  60.     }

  61.    // return 1;
  62. }

z1.jpg

回复评论

暂无评论,赶紧抢沙发吧
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复