trennfix/sw: Added smokefix, further modularized the mm decoder
[eisenbahn.git] / trennfix / sw / include / pin_magic.h
index a6d0b4bb29a8e54c7ebb262ea67995629c53f6c6..3c6438909e6c11713bddd9930d0bb460ca5336c0 100644 (file)
@@ -17,6 +17,7 @@ struct __ph_pin__ {
 #define PINOFF(pin)  (*pin.addr  &= ~_BV(pin.bitno))
 
 #define PINVAL(pin)  (*(pin.addr - 2) & _BV(pin.bitno) ? 1 : 0)
+//#define PINVAL(pin)  (*(pin.addr - 2) & _BV(pin.bitno))
 
 #define setpin(pin, val) ((val) ? PINON(pin) : PINOFF(pin))