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); }
/** * @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); }
/** * @brief UART interrupt handler sub-routine * @return Nothing */ void UART_IRQHandler(void) { Chip_UART_IRQRBHandler(LPC_USART, &uart_rxrb, &uart_txrb); }
void uart_irq(ciaaUART_e n) { uartData_t * u = &(uarts[n]); Chip_UART_IRQRBHandler(u->uart, u->rrb, u->trb); }
void UART_IRQHandler(void) { Chip_UART_IRQRBHandler(LPC_USART, &rxring, &txring); }
void GPS_IRQ_Handler() { Chip_UART_IRQRBHandler(GPS_UART, &rxring, &txring); }