diff options
Diffstat (limited to 'cores')
-rw-r--r-- | cores/arduino/HardwareSerial_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cores/arduino/HardwareSerial_private.h b/cores/arduino/HardwareSerial_private.h index c0f631f..d3e29c6 100644 --- a/cores/arduino/HardwareSerial_private.h +++ b/cores/arduino/HardwareSerial_private.h @@ -63,8 +63,8 @@ HardwareSerial::HardwareSerial( _ubrrh(ubrrh), _ubrrl(ubrrl), _ucsra(ucsra), _ucsrb(ucsrb), _ucsrc(ucsrc), _udr(udr), - _tx_buffer_head(0), _tx_buffer_tail(0), - _rx_buffer_head(0), _rx_buffer_tail(0) + _rx_buffer_head(0), _rx_buffer_tail(0), + _tx_buffer_head(0), _tx_buffer_tail(0) { } |