better compilation on host
authorzer0 <zer0@carbon.local>
Sat, 9 Jan 2010 16:39:09 +0000 (17:39 +0100)
committerzer0 <zer0@carbon.local>
Sat, 9 Jan 2010 16:39:09 +0000 (17:39 +0100)
modules/devices/encoders/encoders_spi/encoders_spi.c

index a672803..ae0d0d1 100644 (file)
@@ -24,6 +24,8 @@
  * interface. Basically, frames are formatted with 4 words of 16 bits,
  * describing the values of the 4 encoders. */
 
+#ifndef HOST_VERSION
+
 #include <string.h>
 
 #include <aversive.h>
@@ -101,3 +103,5 @@ void encoders_spi_set_value(void *encoder, int32_t val)
        g_encoders_spi_values[(int)encoder] = val;
        IRQ_UNLOCK(flags);
 }
+
+#endif