Remove duplicate code block
This commit is contained in:
parent
c9b19ce655
commit
b70d2b3163
1 changed files with 3 additions and 13 deletions
|
@ -224,19 +224,9 @@ ISR(USART_RX_vect)
|
||||||
rs232_ports[RS232_PORT_0].input_handler(c);
|
rs232_ports[RS232_PORT_0].input_handler(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif defined (__AVR_AT90USB1287__)
|
#elif defined (__AVR_AT90USB1287__)
|
||||||
static rs232_t rs232_ports[1] = {
|
/*---------------------------------------------------------------------*/
|
||||||
{ // UART1
|
|
||||||
&UDR1,
|
|
||||||
&UBRR1H,
|
|
||||||
&UBRR1L,
|
|
||||||
&UCSR1B,
|
|
||||||
&UCSR1C,
|
|
||||||
0,
|
|
||||||
NULL
|
|
||||||
}
|
|
||||||
};
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
ISR(USART1_TX_vect)
|
ISR(USART1_TX_vect)
|
||||||
{
|
{
|
||||||
rs232_ports[RS232_PORT_0].txwait = 0;
|
rs232_ports[RS232_PORT_0].txwait = 0;
|
||||||
|
@ -254,7 +244,7 @@ ISR(USART1_RX_vect)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
#error Please define the UART registers for your MCU!
|
#error Please define the interrupt vectors for your MCU!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
Loading…
Reference in a new issue