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
|
@ -150,6 +150,10 @@ typedef enum {
|
||||||
|
|
||||||
// Not connected
|
// Not connected
|
||||||
NC = (int)0xFFFFFFFF,
|
NC = (int)0xFFFFFFFF,
|
||||||
|
|
||||||
|
// Standard but not supported pins
|
||||||
|
USBTX = NC,
|
||||||
|
USBRX = NC,
|
||||||
} PinName;
|
} PinName;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
|
@ -140,7 +140,12 @@ typedef enum {
|
||||||
USB_OTG_HS_ULPI_NXT = PC_3,
|
USB_OTG_HS_ULPI_NXT = PC_3,
|
||||||
|
|
||||||
// Not connected
|
// Not connected
|
||||||
NC = (int)0xFFFFFFFF
|
NC = (int)0xFFFFFFFF,
|
||||||
|
|
||||||
|
// Standard but not supported pins
|
||||||
|
USBTX = NC,
|
||||||
|
USBRX = NC
|
||||||
|
|
||||||
} PinName;
|
} PinName;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue