diff options
| author | hathach <[email protected]> | 2018-03-11 21:16:51 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-11 21:16:51 +0700 |
| commit | 229a7a23b82d90e34c6fd5b52ef739d3f9668dcb (patch) | |
| tree | 94d90397f6acf28ccbfdc58fb141122763ec8acb /tinyusb/common | |
| parent | d71334c34822c1e7b5b4ecfdcc44c8c3c3843d61 (diff) | |
shorten TUSB_DESC_TYPE*
Diffstat (limited to 'tinyusb/common')
| -rw-r--r-- | tinyusb/common/tusb_types.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tinyusb/common/tusb_types.h b/tinyusb/common/tusb_types.h index 56fdb56d4..876c0d9e3 100644 --- a/tinyusb/common/tusb_types.h +++ b/tinyusb/common/tusb_types.h @@ -76,18 +76,18 @@ typedef enum /// USB Descriptor Types (section 9.4 table 9-5)
typedef enum
{
- TUSB_DESC_TYPE_DEVICE = 0x01 ,
- TUSB_DESC_TYPE_CONFIGURATION = 0x02 ,
- TUSB_DESC_TYPE_STRING = 0x03 ,
- TUSB_DESC_TYPE_INTERFACE = 0x04 ,
- TUSB_DESC_TYPE_ENDPOINT = 0x05 ,
- TUSB_DESC_TYPE_DEVICE_QUALIFIER = 0x06 ,
- TUSB_DESC_TYPE_OTHER_SPEED_CONFIGURATION = 0x07 ,
- TUSB_DESC_TYPE_INTERFACE_POWER = 0x08 ,
- TUSB_DESC_TYPE_OTG = 0x09 ,
- TUSB_DESC_TYPE_DEBUG = 0x0A ,
- TUSB_DESC_TYPE_INTERFACE_ASSOCIATION = 0x0B ,
- TUSB_DESC_TYPE_INTERFACE_CLASS_SPECIFIC = 0x24
+ TUSB_DESC_DEVICE = 0x01 ,
+ TUSB_DESC_CONFIGURATION = 0x02 ,
+ TUSB_DESC_STRING = 0x03 ,
+ TUSB_DESC_INTERFACE = 0x04 ,
+ TUSB_DESC_ENDPOINT = 0x05 ,
+ TUSB_DESC_DEVICE_QUALIFIER = 0x06 ,
+ TUSB_DESC_OTHER_SPEED_CONFIG = 0x07 ,
+ TUSB_DESC_INTERFACE_POWER = 0x08 ,
+ TUSB_DESC_OTG = 0x09 ,
+ TUSB_DESC_DEBUG = 0x0A ,
+ TUSB_DESC_INTERFACE_ASSOCIATION = 0x0B ,
+ TUSB_DESC_CLASS_SPECIFIC = 0x24
}tusb_std_descriptor_type_t;
typedef enum
|
