我正在尝试为具有5个接口的USB HUB设备设置备用设置。 以下是每个接口的配置。
1. Ifs= 5 Cfg#= 1 Atr=c0 MxPwr= 2mA A: FirstIf#= 0 IfCount= 1
Cls=08(stor.) Sub=06 Prot=50 A: FirstIf#= 1 IfCount= 1 Cls=03(HID
) Sub=00 Prot=00 A: FirstIf#= 2 IfCount= 2 Cls=01(audio) Sub=00
Prot=00 A: FirstIf#= 4 IfCount= 1 Cls=fe(app. ) Sub=01 Prot=01
2. I:* If#= 0 Alt= 0 #EPs= 2 Cls=08(stor.) Sub=06 Prot=50
Driver=usb-storage E: Ad=81(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms E:
Ad=01(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
3. I:* If#= 1 Alt= 0 #EPs= 2 Cls=03(HID ) Sub=00 Prot=00 Driver=usbhid E: Ad=82(I) Atr=03(Int.) MxPS= 64 Ivl=128ms E: Ad=02(O) Atr=03(Int.) MxPS= 64 Ivl=128ms
4. I:* If#= 2 Alt= 0 #EPs= 0 Cls=01(audio) Sub=01 Prot=00 Driver=snd-usb-audio
**5. I: If#= 3 Alt= 0 #EPs= 0 Cls=01(audio) Sub=02 Prot=00 Driver=(none)
I: If#= 3 Alt= 1 #EPs= 1 Cls=01(audio) Sub=02 Prot=00 Driver=(none)
E: Ad=83(I) Atr=01(Isoc) MxPS= 320 Ivl=1ms**
6: I:* If#= 4 Alt= 0 #EPs= 0 Cls=fe(app. ) Sub=01 Prot=01 Driver=(none)
如果您看到界面3支持2个备用设置。 0备用设置没有任何端点。 1个备用设置有1个端点。
当我不使用设备时,我会将备用设置设置为0,这样就不会使用端点,否则我会将备用设置设置为1.
我的问题是。 我正在使用libusb来设置备用设置。我的libusb调用序列将是。
to get the required device.
1. libusb_init
2. libusb_get_devicelist
3. search the device using device discriptor
4. libusb_open
to set the alternate setting.
1) Detach the driver if attached libusb_detachdriver.
2) claim the interface libusb_claiminterface(3)
3) set alternate setting libusb_setalternatesetting(0/1)
4) release the claimed interface libusb_releaseinterface(3)
5) reattach the driver libusb_attachderiver
每次使用/不使用设备时,我都会执行第二组呼叫序列。
但是当我在将备用设置设置为1(libusb_alternatesetting(1))后释放声明的接口(libusb_releaseinterface)时,即使正在使用设备,接口也会重置为备用设置0.
我很困惑我需要使用的libusb调用序列。如果我没有立即释放声明的接口,驱动程序状态将被分离,直到我释放接口并附加驱动程序。