码迷,mamicode.com
首页 > 其他好文 > 详细

【nRF51822蓝牙开发笔记】点亮LED灯

时间:2014-10-27 01:43:20      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   div   on   2014   log   as   

/******************** (C) COPYRIGHT 2014 ???? ********************
 * ÎļþÃû  :main
 * ÃèÊö    :
 * ÊÔÑéƽ̨:  nRF51822À¶ÑÀ¿ª·¢°å  
 * ÃèÊö    : 
 * ×÷Õß    :Ð¥·ç
 * ²©¿Í    :
**********************************************************************/



#include <stdbool.h>
#include <stdint.h>
#include "nrf_delay.h"
#include "nrf_gpio.h"
#include "led.h"

int main(void)
{
  // Configure LED-pins as outputs
  LED_Init();
  
  // LED 0 and LED 1 blink alternately.
  while(true)
  {
    LED1_Open();
    LED2_Close();
    
    nrf_delay_ms(500);
    
    LED2_Open();
    LED1_Close();
    
    nrf_delay_ms(500);
  }
}

 

/**************************End of XF-Studio*******************************/

  

【nRF51822蓝牙开发笔记】点亮LED灯

标签:blog   io   os   ar   div   on   2014   log   as   

原文地址:http://www.cnblogs.com/xiaofeng6636/p/4053296.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!