Fix incorrect pin in PinMap_UART_RX - issue mbedmicro/mbed#1657 (#1675)

PTC6 was wrong, should be PTD6
pull/1676/head
Colin Hogben 2016-04-17 17:35:16 +01:00 committed by Martin Kojtal
parent 60b322a521
commit a11f73cb26
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ const PinMap PinMap_UART_RX[] = {
{PTC3 , UART_1, 3},
{PTC14, UART_4, 3},
{PTD2 , UART_2, 3},
{PTC6 , UART_0, 3},
{PTD6 , UART_0, 3},
{NC , NC , 0}
};