aboutsummaryrefslogtreecommitdiffstats
path: root/ports/ARM7-LPC214x/GCC/lpc214x_serial.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/ARM7-LPC214x/GCC/lpc214x_serial.c')
-rw-r--r--ports/ARM7-LPC214x/GCC/lpc214x_serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/ARM7-LPC214x/GCC/lpc214x_serial.c b/ports/ARM7-LPC214x/GCC/lpc214x_serial.c
index e799faf5b..062226aa4 100644
--- a/ports/ARM7-LPC214x/GCC/lpc214x_serial.c
+++ b/ports/ARM7-LPC214x/GCC/lpc214x_serial.c
@@ -146,5 +146,5 @@ void InitSerial(void) {
chFDDInit(&COM2, ib2, sizeof ib2, NULL, ob2, sizeof ob2, OutNotify2);
SetUARTI(U1Base, 38400, LCR_WL8 | LCR_STOP1 | LCR_NOPARITY, FCR_TRIGGER0);
- VICIntEnable |= INTMASK(SOURCE_UART0) | INTMASK(SOURCE_UART1);
+ VICIntEnable = INTMASK(SOURCE_UART0) | INTMASK(SOURCE_UART1);
}