diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-20 17:43:16 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-20 17:43:16 +0000 |
commit | 51e92189370b75c0e21d5060f10ad46c1e36b83c (patch) | |
tree | 6e8cf12f3a58b1f6de088e467b3efae6e9874040 /os/hal/platforms/LPC11Uxx/serial_lld.c | |
parent | dce3d9cca32c68635d294fad4c3984a3492c3a9b (diff) | |
download | ChibiOS-51e92189370b75c0e21d5060f10ad46c1e36b83c.tar.gz ChibiOS-51e92189370b75c0e21d5060f10ad46c1e36b83c.tar.bz2 ChibiOS-51e92189370b75c0e21d5060f10ad46c1e36b83c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4224 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/LPC11Uxx/serial_lld.c')
-rw-r--r-- | os/hal/platforms/LPC11Uxx/serial_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/LPC11Uxx/serial_lld.c b/os/hal/platforms/LPC11Uxx/serial_lld.c index afe371238..4463a15ad 100644 --- a/os/hal/platforms/LPC11Uxx/serial_lld.c +++ b/os/hal/platforms/LPC11Uxx/serial_lld.c @@ -240,8 +240,8 @@ void sd_lld_init(void) { #if LPC_SERIAL_USE_UART0
sdObjectInit(&SD1, NULL, notify1);
SD1.uart = LPC_UART;
- LPC_IOCON->PIO1_6 = 0xC1; /* RDX without resistors. */
- LPC_IOCON->PIO1_7 = 0xC1; /* TDX without resistors. */
+ LPC_IOCON->PIO0_18 = 0x81; /* RDX without resistors. */
+ LPC_IOCON->PIO0_19 = 0x81; /* TDX without resistors. */
#endif
}
|