]> git.llucax.com Git - z.facultad/66.09/etherled.git/commitdiff
Elimino vieja versión porque será reemplazada por el módulo escrito en assembly.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 11 Dec 2005 22:05:00 +0000 (22:05 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 11 Dec 2005 22:05:00 +0000 (22:05 +0000)
src/leds.h [deleted file]

diff --git a/src/leds.h b/src/leds.h
deleted file mode 100644 (file)
index ea8c083..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-// vim: set et sw=4 sts=4 :    
-
-#ifndef _LEDS_H_
-#define _LEDS_H_
-
-#include "types.h"
-
-#ifdef SDCC
-static xdata at 0x0080 byte leds0;
-static xdata at 0x00c0 byte leds1;
-#else
-static byte xdata leds0 _at_ 0x0080;
-static byte xdata leds1 _at_ 0x00c0;
-#endif
-
-#define leds(word)          \
-    do                      \
-    {                       \
-        uint16 w = word;    \
-        leds0 = ~LOW(w);    \
-        leds1 = ~HIGH(w);   \
-    }                       \
-    while (0)
-
-#define ledsb(bh, bl)   \
-    do                  \
-    {                   \
-        leds0 = ~(bl);  \
-        leds1 = ~(bh);  \
-    }                   \
-    while (0)
-
-#endif // _LEDS_H_