void UART5_IRQHandler(void)
{
	UartIRQ(&g_tUart5);
}
void USART6_IRQHandler(void)
{
	UartIRQ(&g_tUart6);
}
void UART4_IRQHandler(void)
{
	UartIRQ(&g_tUart4);
}
void USART3_IRQHandler(void)
{
	UartIRQ(&g_tUart3);
}
void USART2_IRQHandler(void)
{
	UartIRQ(&g_tUart2);
}
void USART1_IRQHandler(void)
{
	UartIRQ(&g_tUart1);
}
Example #7
0
void __attribute__((used)) USART3_IRQHandler(void)
{
	UartIRQ(&g_tUart3);
}