git-svn-id: https://rt-thread.googlecode.com/svn/trunk@256 bbd45198-f89e-11dd-88c7-29a3b14d5316

This commit is contained in:
aganhx@gmail.com 2009-12-28 15:41:21 +00:00
parent bcaadfa91f
commit 78de03446b
1 changed files with 4 additions and 2 deletions

View File

@ -92,12 +92,14 @@ void rt_led_thread_entry(void* parameter)
{
while(1)
{
/* led on 1s */
/* light on leds for one second */
rt_hw_led_on(LED2|LED3);
rt_hw_led_off(LED1|LED4);
rt_thread_delay(100);
/* led off 1s */
/* light off leds for one second */
rt_hw_led_off(LED2|LED3);
rt_hw_led_on(LED1|LED4);
rt_thread_delay(100);
}