From: Stefan E. <se...@us...> - 2002-11-26 18:43:46
|
Update of /cvsroot/blob/blob/src/lib In directory sc8-pr-cvs1:/tmp/cvs-serv27851 Modified Files: led.c Log Message: - re-enable LEDs Index: led.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/led.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- led.c 14 Aug 2002 21:13:45 -0000 1.6 +++ led.c 26 Nov 2002 18:43:43 -0000 1.7 @@ -41,6 +41,7 @@ #endif #include <blob/arch.h> +#include <blob/sa1100.h> #include <blob/led.h> #include <blob/init.h> @@ -66,7 +67,7 @@ if(led_locked) return; - /* GPSR = LED_GPIO; */ + GPSR = LED_GPIO; led_state = 1; } @@ -78,7 +79,7 @@ if(led_locked) return; - /* GPCR = LED_GPIO; */ + GPCR = LED_GPIO; led_state = 0; } |