Searched defs:usb_device_descriptor (Results 1 – 2 of 2) sorted by relevance
341 struct usb_device_descriptor { struct342 uint8_t bLength; /* Descriptor size in bytes = 18 */343 uint8_t bDescriptorType; /* DEVICE descriptor type = 1 */344 uint16_t bcdUSB; /* USB spec in BCD, e.g. 0x0200 */345 uint8_t bDeviceClass; /* Class code, if 0 see interface */346 uint8_t bDeviceSubClass; /* Sub-Class code, 0 if class = 0 */347 uint8_t bDeviceProtocol; /* Protocol, if 0 see interface */348 uint8_t bMaxPacketSize0; /* Endpoint 0 max. size */349 uint16_t idVendor; /* Vendor ID per USB-IF */350 uint16_t idProduct; /* Product ID per manufacturer */[all …]
288 struct usb_device_descriptor { struct289 __u8 bLength;290 __u8 bDescriptorType;292 __le16 bcdUSB;293 __u8 bDeviceClass;294 __u8 bDeviceSubClass;295 __u8 bDeviceProtocol;296 __u8 bMaxPacketSize0;297 __le16 idVendor;298 __le16 idProduct;[all …]