我正在尝试将 USB 设备设置为在连接到 Windows 8 机器时自动使用 WinUSB 作为驱动程序,如此处所述。
它说:
为了让 USB 驱动程序堆栈知道设备支持扩展功能描述符,设备必须定义存储在字符串索引 0xEE 处的 OS 字符串描述符。
我的意思是我需要在内存位置 0xEE 创建一个包含描述符的结构。我将如何在 C 中解决这个问题?
这是我尝试过的:
// The struct definition
typedef struct {
uint8_t bLength;
uint8_t bDescriptorType;
uint8_t qwSignature[14];
uint8_t bMS_VendorCode;
uint8_t bPad;
} usb_os_str_desc_t;
// Create a pointer to a struct located at 0xEE
volatile usb_os_str_desc_t* const extended_feature_support = (usb_os_str_desc_t*) 0xEE;
// Create a new struct at the location specified in "extended_feature_support"
(*extended_feature_support) = {
.bLength = 0x12,
.bDescriptorType = 0x03,
.qwSignature = "MSFT100",
.bMS_VendorCode = 0x04,
.bPad = 0x00
};
但是编译器不喜欢这样,抱怨数据定义没有类型。有没有办法在C中做到这一点?我是否正确理解了这篇文章?
任何帮助将不胜感激。