Skip to content

Commit ae468ed

Browse files
Merge pull request #1454 from ARMmbed/console_txrx-fix
Fix missing CONSOLE_TX/RX pinname in porting guide
2 parents 4676f46 + c94f3a4 commit ae468ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/porting/standard_pin_names/pin_names_porting.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ This is an example on how to define UART names in PinNames.h:
4848
typedef enum {
4949
...
5050
// Px_xx relates to the processor pin connected to the UART
51-
USBTX = Px_xx,
52-
USBRX = Px_xx,
51+
CONSOLE_TX = Px_xx,
52+
CONSOLE_RX = Px_xx,
5353
...
5454
} PinName;
5555

0 commit comments

Comments
 (0)