diff -r 1fbdf88163b3 -r e930a0e817de drivers/can_virtual/led_virtual.c --- 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 -#include - -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"); -} - -