aboutsummaryrefslogtreecommitdiffstats
path: root/core/comm/HardwareUsb.h
diff options
context:
space:
mode:
authorPerry Hung <iperry@alum.mit.edu>2010-03-31 21:29:29 -0400
committerPerry Hung <iperry@alum.mit.edu>2010-03-31 21:29:29 -0400
commit25c7ba0ed78aea0a368bc178dd720a845dd515ac (patch)
tree86be2502247dc0dd831191ae219a62875daad97c /core/comm/HardwareUsb.h
parent4e51e057bb5a8d6b3475d2202af8a2a2caf9ba7b (diff)
downloadlibrambutan-25c7ba0ed78aea0a368bc178dd720a845dd515ac.tar.gz
librambutan-25c7ba0ed78aea0a368bc178dd720a845dd515ac.zip
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/HardwareUsb.h')
-rw-r--r--core/comm/HardwareUsb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/comm/HardwareUsb.h b/core/comm/HardwareUsb.h
index b8733c1..a5ff191 100644
--- a/core/comm/HardwareUsb.h
+++ b/core/comm/HardwareUsb.h
@@ -33,13 +33,13 @@ class HardwareUsb : public Print {
static void usb_rx_cb(void);
static void usb_tx_cb(void);
unsigned char rx_buffer[USB_SERIAL_BUF_SIZE];
- int8_t rx_buffer_offset_out;
- int8_t rx_buffer_offset_in;
+ int8 rx_buffer_offset_out;
+ int8 rx_buffer_offset_in;
public:
HardwareUsb(void);
void begin();
- uint8_t available(void);
- uint8_t read(void);
+ uint8 available(void);
+ uint8 read(void);
void flush(void);
virtual void write(unsigned char);
using Print::write;