diff options
author | Cristian Maglie <c.maglie@bug.st> | 2014-05-23 21:16:42 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2014-05-23 21:16:42 +0200 |
commit | 1ee86b6bcb94961ffd8422820dc721d1b17434a7 (patch) | |
tree | f53f30fcfa3a524488ea8154257a659e048a9b5a /cores/arduino/HardwareSerial0.cpp | |
parent | 2d46a8ef88b5cb52d7d2660b97f7289981a7b32a (diff) | |
parent | e66944a4a1a34a39fef6c5132b9a4794dee8fd5b (diff) |
Merge branch 'ide-1.5.x-hwserial-cleanup' of github.com:matthijskooijman/Arduino into matthijskooijman-ide-1.5.x-hwserial-cleanup
Diffstat (limited to 'cores/arduino/HardwareSerial0.cpp')
-rw-r--r-- | cores/arduino/HardwareSerial0.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cores/arduino/HardwareSerial0.cpp b/cores/arduino/HardwareSerial0.cpp index 67495ad..1146eeb 100644 --- a/cores/arduino/HardwareSerial0.cpp +++ b/cores/arduino/HardwareSerial0.cpp @@ -43,7 +43,7 @@ #elif defined(USART_RXC_vect) ISR(USART_RXC_vect) // ATmega8 #else - #error "Don't know what the Data Received vector is called for the first UART" + #error "Don't know what the Data Received vector is called for Serial" #endif { Serial._rx_complete_irq(); @@ -58,7 +58,7 @@ ISR(USART0_UDRE_vect) #elif defined(USART_UDRE_vect) ISR(USART_UDRE_vect) #else - #error "Don't know what the Data Register Empty vector is called for the first UART" + #error "Don't know what the Data Register Empty vector is called for Serial" #endif { Serial._tx_udr_empty_irq(); |