本文主要是介绍struct usb_interface_descriptor,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
struct usb_interface_descriptor {__u8 bLength; // 描述符大小__u8 bDescriptorType;__u8 bInterfaceNumber;__u8 bAlternateSetting;__u8 bNumEndpoints; // 端点数__u8 bInterfaceClass; // 接口类__u8 bInterfaceSubClass; // 接口子类__u8 bInterfaceProtocol; // 接口协议__u8 iInterface;
} __attribute__ ((packed));
这篇关于struct usb_interface_descriptor的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!