-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot connect device to my program on Linux, but it works on Windows #710
Comments
What is the driver bound to the device? Is it hidraw or some other driver? hidapi under Linux only supports hidraw or libusb. You can print the output of Can you try to detach the kernel hid driver to see if you can use hidapi libusb backend with your device? |
Heya thank you for your super fast response! Running lsusb gives the following output:
and using lsusb -t gives:
I tried detatching the module by running:
But it didn't fix anything |
You've checked the interface Try using Also, you may check manually if your device is present in the system at all, by: |
Running Running
And as for the last command:
|
Greetings,
I'm using HIDAPI to write a cross-platform library for the FT260 USB-to-I2C bridge and have a problem. The code is available on Codeberg: https://codeberg.org/Zamenhof/FreeFT260
but basically, while the code compiles successfully on both Windows and Linux:
It always returns
Device not openable: No HID devices with requested VID/PID found in the system.
on Linux even though when I use lsusb the device is found and the VID and PID are correct. I ran the program both with sudo and without and it didn't make a change - according to lsusb my device is the only one with the VID/PID-combo.How come and how can I fix this issue?
The text was updated successfully, but these errors were encountered: