diff options
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
}
|