diff options
Diffstat (limited to 'cores/arduino/wiring.h')
-rwxr-xr-x | cores/arduino/wiring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cores/arduino/wiring.h b/cores/arduino/wiring.h index 027a8d1..e29959b 100755 --- a/cores/arduino/wiring.h +++ b/cores/arduino/wiring.h @@ -96,6 +96,7 @@ extern "C"{ #define bitClear(value, bit) ((value) &= ~(1UL << (bit))) #define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit)) + typedef unsigned int word; #define bit(b) (1UL << (b)) |