Devices from second USB bus does not appear in list
yene opened this issue · 4 comments
yene commented
Problem:
-
USB device with vendor id 0x0e8d (3725) missing in listUSBDevices()
-
the USB device is listed in Google Chrome
How to reproduce:
JSON export of getDeviceList()
thegecko commented
Do these devices appear if you use the node-usb
library directly?
yene commented
Yes, it is reported by node-usb
usb.getDeviceList()
yene commented
thegecko commented
That is strange. As a test, you can "fool" webusb into listing all devices returned by the libusb adapter by passing an invalid filter:
usb.requestDevice({
filters: [{something: null}]
})
.then(device => {
...
});
This will at least tell us if its the filters removing your device if it correctly appears in that list.