Skip to content

Commit 036f046

Browse files
committed
HardwareSerial: change byte to uint8_t (since byte definition isn't present).
1 parent f689991 commit 036f046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hardware/arduino/cores/arduino/HardwareSerial.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class HardwareSerial : public Stream
5353
volatile uint8_t *ucsrc, volatile uint8_t *udr,
5454
uint8_t rxen, uint8_t txen, uint8_t rxcie, uint8_t udrie, uint8_t u2x);
5555
void begin(unsigned long);
56-
void begin(unsigned long, byte);
56+
void begin(unsigned long, uint8_t);
5757
void end();
5858
virtual int available(void);
5959
virtual int peek(void);

0 commit comments

Comments
 (0)