drivers/can_virtual/led_virtual.c
changeset 15 e930a0e817de
parent 14 1fbdf88163b3
child 16 1684806cf7e1
--- a/drivers/can_virtual/led_virtual.c	Thu May 18 16:26:59 2006 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-/***************************************************************************/
-#include <data.h>
-#include <led.h>
-
-void led_set_redgreen(CO_Data *d, unsigned char state)
-{
-        if (state & 0x01)
-                printf("\e[41m ERROR LED ON \e[m          ");
-        else
-                printf("\e[31m error led off \e[m         ");
-
-        if (state & 0x02)
-                printf("\e[34;42m RUN LED ON \e[m\n");
-        else
-                printf("\e[32m run led off \e[m\n");
-}
-
-