diff options
Diffstat (limited to 'core/wiring.h')
-rw-r--r-- | core/wiring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/wiring.h b/core/wiring.h index bcf6eda..82ff41a 100644 --- a/core/wiring.h +++ b/core/wiring.h @@ -45,8 +45,8 @@ typedef uint8 boolean; typedef uint8 byte; void init(void); -unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout); -void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, byte val); +unsigned long pulseIn(uint8 pin, uint8 state, unsigned long timeout); +void shiftOut(uint8 dataPin, uint8 clockPin, uint8 bitOrder, byte val); #ifdef __cplusplus |