首页 > 其他 > 详细

2、跑马灯测试程序(设置一定范围的gpio)

时间:2015-08-11 07:03:19      阅读:310      评论:0      收藏:0      [点我收藏+]

 

 

C:\Users\LiTao\Desktop\儿童智能硬件资料\nrf51822\nRF51822EK_TM配套资料\EK_TM测试程序\跑马灯测试程序

 1 int main(void)
 2 {
 3   uint8_t output_state = 0;
 4 
 5   // Configure LED-pins as outputs
 6   nrf_gpio_range_cfg_output(LED_START, LED_STOP);//[1]
 7 
 8   while(true)
 9   {
10     nrf_gpio_port_write(LED_PORT, 1 << (output_state + LED_OFFSET));
11     output_state = (output_state + 1) & BLINKY_STATE_MASK;
12     nrf_delay_ms(100);
13   }
14 }

[1] This function can be used to configure pin range as simple output with gate driving GPIO_PIN_CNF_DRIVE_S0S1 (normal cases).
链接:http://pan.baidu.com/s/1dDtZKgL

 

2、跑马灯测试程序(设置一定范围的gpio)

原文:http://www.cnblogs.com/happyhappy/p/4719605.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!