diff options
| author | Perry Hung <iperry@alum.mit.edu> | 2010-03-31 21:29:29 -0400 |
|---|---|---|
| committer | Perry Hung <iperry@alum.mit.edu> | 2010-03-31 21:29:29 -0400 |
| commit | 25c7ba0ed78aea0a368bc178dd720a845dd515ac (patch) | |
| tree | 86be2502247dc0dd831191ae219a62875daad97c /core/comm/HardwareSerial.h | |
| parent | 4e51e057bb5a8d6b3475d2202af8a2a2caf9ba7b (diff) | |
Removed inttypes.h
Removed inttypes.h from libmaple. Will have another pass through to use
the standard libmaple types, but will come in another commit.
Diffstat (limited to 'core/comm/HardwareSerial.h')
| -rw-r--r-- | core/comm/HardwareSerial.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/comm/HardwareSerial.h b/core/comm/HardwareSerial.h index a3913f9..2c9c6b8 100644 --- a/core/comm/HardwareSerial.h +++ b/core/comm/HardwareSerial.h @@ -32,10 +32,10 @@ class HardwareSerial : public Print { private: uint8 usartNum; public: - HardwareSerial(uint8_t); - void begin(uint32_t); + HardwareSerial(uint8); + void begin(uint32); uint32 available(void); - uint8_t read(void); + uint8 read(void); void flush(void); virtual void write(unsigned char); using Print::write; |
