Merge pull request #7403 from codeauroraforum/Fix_LPC546XX_UART

LPC546XX: Fix UART mux setting in the LPCXpresso board
pull/7411/head
Cruz Monrreal 2018-07-03 07:38:22 -05:00 committed by GitHub
commit f12afde757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -65,13 +65,13 @@ const PinMap PinMap_I2C_SCL[] = {
/************UART***************/
const PinMap PinMap_UART_TX[] = {
{P0_30, UART_0, 1},
{P3_27, UART_1, 1},
{P3_27, UART_1, 3},
{NC , NC , 0}
};
const PinMap PinMap_UART_RX[] = {
{P0_29, UART_0, 1},
{P3_26, UART_1, 1},
{P3_26, UART_1, 3},
{NC , NC , 0}
};