Skip to content

Commit 909af68

Browse files
committed
Merge branch 'ide-1.5.x' into dev-ide-1.5.x-discovery
Conflicts: build/shared/revisions.txt
2 parents 0b09736 + e1bdf39 commit 909af68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hardware/arduino/avr/cores/arduino/HardwareSerial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ inline void store_char(unsigned char c, HardwareSerial *s)
9191
#elif defined(UDR)
9292
if (bit_is_clear(UCSRA, PE)) {
9393
unsigned char c = UDR;
94-
store_char(c, &rx_buffer);
94+
store_char(c, &Serial);
9595
} else {
9696
unsigned char c = UDR;
9797
};

0 commit comments

Comments
 (0)