mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #9595 from c1728p9/define_usbtx_and_usbrx
Define USBTX and USBRX for targets without thempull/9604/head
commit
46101f68fe
|
@ -147,9 +147,13 @@ typedef enum {
|
|||
SDMISO = P0_8,
|
||||
SDSCLK = P1_29,
|
||||
SDSSEL = P1_12,
|
||||
|
||||
|
||||
// Not connected
|
||||
NC = (int)0xFFFFFFFF,
|
||||
|
||||
// Standard but not supported pins
|
||||
USBTX = NC,
|
||||
USBRX = NC,
|
||||
} PinName;
|
||||
|
||||
typedef enum {
|
||||
|
|
|
@ -140,7 +140,12 @@ typedef enum {
|
|||
USB_OTG_HS_ULPI_NXT = PC_3,
|
||||
|
||||
// Not connected
|
||||
NC = (int)0xFFFFFFFF
|
||||
NC = (int)0xFFFFFFFF,
|
||||
|
||||
// Standard but not supported pins
|
||||
USBTX = NC,
|
||||
USBRX = NC
|
||||
|
||||
} PinName;
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in New Issue