aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/HardwareSerial_private.h
diff options
context:
space:
mode:
authorjantje <jan@baeyens.it>2014-04-01 16:14:16 +0200
committerjantje <jan@baeyens.it>2014-04-01 16:14:16 +0200
commit098307de60f9fab4ff56640bfce7bdb35c608a6f (patch)
tree92d664f15e79f0dd889935f1dae108bacf586e2a /cores/arduino/HardwareSerial_private.h
parentf87e11534aaf48475856a210b2b473988d70a43d (diff)
I forgot a file
Diffstat (limited to 'cores/arduino/HardwareSerial_private.h')
-rw-r--r--cores/arduino/HardwareSerial_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/HardwareSerial_private.h b/cores/arduino/HardwareSerial_private.h
index fa20e55..9e98da6 100644
--- a/cores/arduino/HardwareSerial_private.h
+++ b/cores/arduino/HardwareSerial_private.h
@@ -99,7 +99,7 @@ void HardwareSerial::_rx_complete_irq(void)
// No Parity error, read byte and store it in the buffer if there is
// room
unsigned char c = *_udr;
- uint8_t i = (unsigned int)(_rx_buffer_head + 1) % SERIAL_BUFFER_SIZE;
+ uint8_t i = (unsigned int)(_rx_buffer_head + 1) % SERIAL_RX_BUFFER_SIZE;
// if we should be storing the received character into the location
// just before the tail (meaning that the head would advance to the