Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LPC546XX: Fix UART mux setting in the LPCXpresso board #7403

Merged
merged 1 commit into from Jul 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -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}
};

Expand Down