Usb4java备用设置

时间:2014-07-22 07:17:58

标签: java usb4java

我有一个设备,我必须通过USB与之通信。

它有1个活动配置,有1个接口。

接口有更多备用设置(IDLE,PROF1,PROF2)。默认情况下,IDLE处于活动状态。

我的问题是,如何激活PROF2设置?

bNumConfigurations:   0x01
bNumInterfaces:       0x01

[IDLE]
bInterfaceNumber:     0x00
bAlternateSetting:    0x00

[PROF1]
bInterfaceNumber:     0x00
bAlternateSetting:    0x01

[PROF2]
bInterfaceNumber:     0x00
bAlternateSetting:    0x02

...代码

UsbConfiguration config = (UsbConfiguration) device.getActiveUsbConfiguration();    
UsbInterface iface = config.getUsbInterface((byte)0x00);    
UsbInterface alt = iface.getSetting((byte)0x02);                // <= Setting is not active.
UsbEndpoint endpoint = alt.getUsbEndpoint((byte)0x83);    
UsbPipe pipe = endpoint.getUsbPipe();    
pipe.open();                                                    // <= Pipe is not active.

1 个答案:

答案 0 :(得分:2)

我认为这里的问题是高级API根本不提供将活动配置或备用设置设置为默认值以外的方法。

低级API确实......这是我用过的东西::

// Iterate over the devices using low-level API to match a device + config combo from a high-level API
DeviceList list = new DeviceList();
LibUsb.getDeviceList(null, list);
for (Device d : list) {
    DeviceDescriptor descriptor = new DeviceDescriptor();
    LibUsb.getDeviceDescriptor(d, descriptor);
    if (descriptor.idVendor() == device.getUsbDeviceDescriptor().idVendor() &&
            descriptor.idProduct() == device.getUsbDeviceDescriptor().idProduct()) {
        Context context = new Context();
        LibUsb.init(context);
        DeviceHandle handle = new DeviceHandle();
        LibUsb.open(d, handle);
        LibUsb.setConfiguration(handle, 0x02); // or cfg.getUsbConfigurationDescriptor().bConfigurationValue()
        LibUsb.setInterfaceAltSetting(handle, 0x00, 0x02);
        LibUsb.claimInterface(handle, ifc);    // valid test, can't claim unless active
        LibUsb.releaseInterface(handle, ifc);
        LibUsb.close(handle);
        LibUsb.exit(context);
        return; // break, etc
    }
}
LibUsb.freeDeviceList(list, true); // usually in a finally block

当置于辅助函数中时,此逻辑应对设置活动配置有效。

根据libusb开发人员,配置将保持活动状态,只要设备未拔下即可。这是https://github.com/libusb/libusb/issues/158#issuecomment-190501281

最后,如果您还没有这样做,我建议您通过命令行LIBUSB_DEBUG=4设置DEBUG以获取libusb的原始输出。这有助于我的故障排除工作。在这种情况下,您应该看到以下内容:

[21.987087] [0000d903] libusb: debug [libusb_set_configuration] configuration 2