void uart2_handler()
{
  uart_common_rx_handler( 2 );
}
void uart1_handler()
{
  uart_common_rx_handler( 1 );
}
void uart0_handler()
{
  uart_common_rx_handler( 0 );
}
Ejemplo n.º 4
0
void __uart1_rx_handler_helper()
{
  uart_common_rx_handler( 1 );
}
Ejemplo n.º 5
0
void __uart0_rx_handler_helper()
{
  uart_common_rx_handler( 0 );
}
Ejemplo n.º 6
0
__attribute__((__interrupt__)) static void uart3_rx_handler()
{
  uart_common_rx_handler( 3 );
}