diff options
author | bnewbold <bnewbold@robocracy.org> | 2010-08-25 22:57:46 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2010-08-25 22:57:46 -0400 |
commit | 12c351d0561d1f9d4e017bbd3f847906f93b0df7 (patch) | |
tree | 8a1275bdee83faf5365f2982dcbf2a3c4a27f1d2 /wirish | |
parent | 0a6a19cf7625c0badb3bae30ad23605b39883357 (diff) | |
download | librambutan-12c351d0561d1f9d4e017bbd3f847906f93b0df7.tar.gz librambutan-12c351d0561d1f9d4e017bbd3f847906f93b0df7.zip |
inital portability work
Diffstat (limited to 'wirish')
-rw-r--r-- | wirish/wirish.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/wirish/wirish.h b/wirish/wirish.h index 13ff313..431e529 100644 --- a/wirish/wirish.h +++ b/wirish/wirish.h @@ -51,9 +51,6 @@ extern "C"{ #endif -#define MAPLE 1 -#define NR_MAPLE_PINS 39 // temporary - /* Arduino wiring macros and bit defines */ #define HIGH 0x1 #define LOW 0x0 @@ -64,9 +61,6 @@ extern "C"{ #define LSBFIRST 0 #define MSBFIRST 1 -#define USER_ADDR_ROM 0x08005000 -#define USER_ADDR_RAM 0x20000C00 - #define lowByte(w) ((w) & 0xff) #define highByte(w) ((w) >> 8) #define bitRead(value, bit) (((value) >> (bit)) & 0x01) |