diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2008-11-08 21:31:55 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2008-11-08 21:31:55 +0000 |
commit | b2e063e13e76c42489b8e5216cd4e409ffd39ecc (patch) | |
tree | 442d281895a583dcc7da7d77a6d80fa5caec8e73 /cores/arduino/wiring_serial.c | |
parent | 68e9d04f91aa26daa4e3c701002610f2352039fd (diff) |
Switching to new signal (interrupt handler) names for compatibility with the ATmega328.
Diffstat (limited to 'cores/arduino/wiring_serial.c')
-rwxr-xr-x | cores/arduino/wiring_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/wiring_serial.c b/cores/arduino/wiring_serial.c index 2dd242b..6c576d5 100755 --- a/cores/arduino/wiring_serial.c +++ b/cores/arduino/wiring_serial.c @@ -107,7 +107,7 @@ void serialFlush() #if defined(__AVR_ATmega8__) SIGNAL(SIG_UART_RECV) #else -SIGNAL(SIG_USART_RECV) +SIGNAL(USART_RX_vect) #endif { #if defined(__AVR_ATmega8__) |