UVCCamera源码分析(一):
https://www.jianshu.com/p/f7f548c2c0e7
UVCCamera源码分析(二):
https://www.jianshu.com/p/225734c143ba
UVCCamera源码分析(三):
https://www.jianshu.com/p/313e6e4ca418
UVCCamera源码分析(四):
https://www.jianshu.com/p/e7e370011775
UVCCamera源码分析(五):
https://www.jianshu.com/p/3b7f3ff6ab45
【USB笔记】 标准请求 设置接口Set Interface
https://blog.csdn.net/u012028275/article/details/112045449
格式
bmRequestType bRequest wValue wIndex wLength Data
00000001B SET_INTERFACE Alternate Setting Interface Zero None
功能
这个请求用于主机为指定的接口选择替代设置(alternate setting)。
bmRequestType
bmRequestType 00000001B
bmRequestType.Recipient 0b00001(Interface)
bmRequestType.Type 0b00(Standard)
bmRequestType.Direction 0b0(Host-to-Device)
接收端:接口(Interface)
类型:标准(Standard)
方向:主机到设备(Host-to-Device)
bRequest
SET_INTERFACE: 0x0b
wValue
选择的替代设置(alternate setting)。
这里的值是接口描述符 (Interface Descriptor)中的bAlternateSetting字段。
wIndex
接口的编号。
这里的接口号是接口描述符 (Interface Descriptor)中的bInterfaceNumber字段。
wLength
wLength字段固定为0x0000。
如果wLength不为零,则无效,不指定设备的行为。
作者:Meteorwizard
链接:https://www.jianshu.com/p/9108ddfd0a0d
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。