From 78de03446bdc2ed0c56e76c0beff8221a358c250 Mon Sep 17 00:00:00 2001 From: "aganhx@gmail.com" Date: Mon, 28 Dec 2009 15:41:21 +0000 Subject: [PATCH] git-svn-id: https://rt-thread.googlecode.com/svn/trunk@256 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- bsp/mini2440/application.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bsp/mini2440/application.c b/bsp/mini2440/application.c index 2695e75cb4..f0cc65e5e6 100644 --- a/bsp/mini2440/application.c +++ b/bsp/mini2440/application.c @@ -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); }