diff options
| author | hathach <[email protected]> | 2018-03-23 14:15:35 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-23 14:15:35 +0700 |
| commit | e8b0500d403e71da5898cdce01708e0f8111813c (patch) | |
| tree | 00398807f5412ae27c9464dd69a6da2a9f077aad /examples/device/device_virtual_com/src/tusb_descriptors.h | |
| parent | 3e5e1f70bfc320b1940a2ab0771b1dd23e6744f3 (diff) | |
MSC tested with nrf52840
Diffstat (limited to 'examples/device/device_virtual_com/src/tusb_descriptors.h')
| -rw-r--r-- | examples/device/device_virtual_com/src/tusb_descriptors.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/device/device_virtual_com/src/tusb_descriptors.h b/examples/device/device_virtual_com/src/tusb_descriptors.h index db7b00051..af200946c 100644 --- a/examples/device/device_virtual_com/src/tusb_descriptors.h +++ b/examples/device/device_virtual_com/src/tusb_descriptors.h @@ -56,8 +56,8 @@ PRODUCTID_BITMAP(MSC, 4) ) ) #endif -#define INTERFACE_NO_CDC 0 -#define TOTAL_INTEFACES 2 +#define ITF_NUM_CDC 0 +#define ITF_TOTAL 2 //--------------------------------------------------------------------+ // Endpoints Address & Max Packet Size @@ -65,12 +65,12 @@ #define EDPT_IN(x) (0x80 | (x)) #define EDPT_OUT(x) (x) -#define CDC_EDPT_NOTIFICATION_ADDR EDPT_IN (1) +#define CDC_EDPT_NOTIF EDPT_IN (1) #define CDC_EDPT_NOTIFICATION_PACKETSIZE 64 -#define CDC_EDPT_DATA_OUT_ADDR EDPT_OUT(2) -#define CDC_EDPT_DATA_IN_ADDR EDPT_IN (2) -#define CDC_EDPT_DATA_PACKETSIZE 64 +#define CDC_EDPT_OUT EDPT_OUT(2) +#define CDC_EDPT_IN EDPT_IN (2) +#define CDC_EDPT_SIZE 64 //--------------------------------------------------------------------+ |
