diff options
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARM7-LPC214x/GCC/lpc214x_serial.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/ARM7-LPC214x/GCC/lpc214x_serial.c b/ports/ARM7-LPC214x/GCC/lpc214x_serial.c index 59aa75b6b..e799faf5b 100644 --- a/ports/ARM7-LPC214x/GCC/lpc214x_serial.c +++ b/ports/ARM7-LPC214x/GCC/lpc214x_serial.c @@ -106,12 +106,12 @@ static void OutNotify2(void) { u->UART_IER |= IER_THRE;
}
-void UART0Irq(void){
+void UART0Irq(void) {
ServeInterrupt(U0Base, &COM1);
}
-void UART1Irq(void){
+void UART1Irq(void) {
ServeInterrupt(U1Base, &COM2);
}
|