diff options
Diffstat (limited to 'libraries/Wire')
-rw-r--r-- | libraries/Wire/Wire.cpp | 1 | ||||
-rw-r--r-- | libraries/Wire/Wire.h | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/libraries/Wire/Wire.cpp b/libraries/Wire/Wire.cpp index 753f831..8416525 100644 --- a/libraries/Wire/Wire.cpp +++ b/libraries/Wire/Wire.cpp @@ -30,7 +30,6 @@ */ #include "Wire.h" -#include "wirish.h" /* low level conventions: * - SDA/SCL idle high (expected high) diff --git a/libraries/Wire/Wire.h b/libraries/Wire/Wire.h index d2f3608..0640c3b 100644 --- a/libraries/Wire/Wire.h +++ b/libraries/Wire/Wire.h @@ -29,11 +29,11 @@ * interface to I2C (two-wire) communication. */ -#include "wirish.h" - #ifndef _WIRE_H_ #define _WIRE_H_ +#include <wirish/wirish.h> + typedef struct { uint8 scl; uint8 sda; |