Browse Source

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

aganhx@gmail.com 15 years ago
parent
commit
78de03446b
1 changed files with 4 additions and 2 deletions
  1. 4 2
      bsp/mini2440/application.c

+ 4 - 2
bsp/mini2440/application.c

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