Exemplo n.º 1
0
void UART1_IRQHandler(void)
{
	/* Want to handle any errors? Do it here. */

	/* Use default ring buffer handler. Override this with your own
	   code if you need more capability. */
	Chip_UART_IRQRBHandler(LPC_UART1, &rxring, &txring);
}
Exemplo n.º 2
0
/**
 * @brief	UART 0 interrupt handler using ring buffers
 * @return	Nothing
 */
void HANDLER_NAME(void)
{
	/* Want to handle any errors? Do it here. */

	/* Use default ring buffer handler. Override this with your own
	   code if you need more capability. */
	Chip_UART_IRQRBHandler(UART_SELECTION, &rxring, &txring);
}
Exemplo n.º 3
0
/**
 * @brief	UART interrupt handler sub-routine
 * @return	Nothing
 */
void UART_IRQHandler(void)
{
	Chip_UART_IRQRBHandler(LPC_USART, &uart_rxrb, &uart_txrb);
}
Exemplo n.º 4
0
void uart_irq(ciaaUART_e n)
{
	uartData_t * u = &(uarts[n]);

	Chip_UART_IRQRBHandler(u->uart, u->rrb, u->trb);
}
Exemplo n.º 5
0
void UART_IRQHandler(void)
{
	Chip_UART_IRQRBHandler(LPC_USART, &rxring, &txring);
}
Exemplo n.º 6
0
void GPS_IRQ_Handler() {
	Chip_UART_IRQRBHandler(GPS_UART, &rxring, &txring);
}