diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2007-10-23 19:50:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2007-10-23 19:50:46 +0000 |
commit | c95d9e14831c7ebddfa17079fc6ae5217ed7242f (patch) | |
tree | 49b7df0263dc867302c7d8cf8de1e1bc5b789f04 /ports | |
parent | e682c3ea885851ef8adc035e1e41236e6593483e (diff) | |
download | ChibiOS-c95d9e14831c7ebddfa17079fc6ae5217ed7242f.tar.gz ChibiOS-c95d9e14831c7ebddfa17079fc6ae5217ed7242f.tar.bz2 ChibiOS-c95d9e14831c7ebddfa17079fc6ae5217ed7242f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@61 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARM7-LPC214x/GCC/lpc214x_serial.c | 2 |
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 062226aa4..e3f5e4040 100644 --- a/ports/ARM7-LPC214x/GCC/lpc214x_serial.c +++ b/ports/ARM7-LPC214x/GCC/lpc214x_serial.c @@ -102,7 +102,7 @@ static void OutNotify2(void) { UART *u = U1Base;
if (u->UART_LSR & LSR_THRE)
- u->UART_THR = chOQGetI(&COM1.sd_oqueue);
+ u->UART_THR = chOQGetI(&COM2.sd_oqueue);
u->UART_IER |= IER_THRE;
}
|