libusb设备描述符:bcdUSB可能的值

时间:2019-07-17 10:17:46

标签: c linux usb libusb libusb-1.0

我正在使用libusb-1.0开发C应用程序。我想获取一些与USB设备相关的配置参数。我的问题与bcdUSB参数有关。我的代码如下:

libusb_device *dev;
struct libusb_device_descriptor desc;

....

ret = libusb_get_device_descriptor(dev, &desc);

if (ret<0) {
    fprintf(stderr, "error in getting device descriptor\n");
    return 1;
}

printf("bcdUSB: %04x\n", desc.bcdUSB);

对于某些设备,我得到0401值:

bcdUSB: 0401

我不明白此值的确切含义。

在libusb代码中,我在libusb_device_descriptor结构代码中找到了此注释:

/** USB specification release number in binary-coded decimal. A value of
 * 0x0200 indicates USB 2.0, 0x0110 indicates USB 1.1, etc. */
uint16_t bcdUSB;

它仅指定0200和0110值的含义。是否有bcdUSB的所有可能值(包括0401)的文档?

1 个答案:

答案 0 :(得分:0)

我不知道有任何文档描述了bcdUSB的所有可能值,但不得不提一件事。没有什么可以阻止USB设备发送无效的设备描述符内容的。尽管我没有对任何东西进行完全测试,但在我看来,操作系统很可能会忽略错误的bcdUSB,并且该设备将继续按预期运行。

确保有一些合理的默认值,以防万一在此遇到无效值。

仅演示一下,这是在设备端定义设备描述符的方式。几乎“硬编码”。是的,这是来自实际lib的实际代码,在实际设备上运行。

/*-----------------------------------------------------------------------------+
| Device Descriptor 
|-----------------------------------------------------------------------------*/
uint8_t const abromDeviceDescriptor[SIZEOF_DEVICE_DESCRIPTOR] = {
    SIZEOF_DEVICE_DESCRIPTOR,               // Length of this descriptor
    DESC_TYPE_DEVICE,                       // Type code of this descriptor
    0x00, 0x02,                             // Release of USB spec
    0x02,                                   // Device's base class code
    0x00,                                   // Device's sub class code
    0x00,                                   // Device's protocol type code
    EP0_PACKET_SIZE,                        // End point 0's packet size
    USB_VID&0xFF, USB_VID>>8,               // Vendor ID for device, TI=0x0451
                                            // You can order your own VID at www.usb.org"
    USB_PID&0xFF, USB_PID>>8,               // Product ID for device,
                                            // this ID is to only with this example
    VER_FW_L, VER_FW_H,                     // Revision level of device
    1,                                      // Index of manufacturer name string desc
    2,                                      // Index of product name string desc
    USB_STR_INDEX_SERNUM,                   // Index of serial number string desc
    1                                       //  Number of configurations supported
};