summaryrefslogtreecommitdiff
path: root/n/avr/rs232/rs232.c
diff options
context:
space:
mode:
Diffstat (limited to 'n/avr/rs232/rs232.c')
-rw-r--r--n/avr/rs232/rs232.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/n/avr/rs232/rs232.c b/n/avr/rs232/rs232.c
index 5510e45..5d68197 100644
--- a/n/avr/rs232/rs232.c
+++ b/n/avr/rs232/rs232.c
@@ -232,7 +232,7 @@ rs232_poll (void)
#if RECV_MODE == RING
/* Handle received char for ring buffer. */
-INTERRUPT (SIG_UART_RECV)
+SIGNAL (SIG_UART_RECV)
{
uint8_t c;
uint8_t tmphead;
@@ -254,7 +254,7 @@ INTERRUPT (SIG_UART_RECV)
#if SEND_MODE == RING
/** Handle data register empty for ring buffer. */
-INTERRUPT (SIG_UART_DATA)
+SIGNAL (SIG_UART_DATA)
{
uint8_t tmptail;
if (rs232_send_head != rs232_send_tail)