Java: No Endpoint Found, But Python Works
I want to try out the java libusb from http://libusbjava.sourceforge.net and cant even connect to my device... I had this python code before: def discover(): my_device = None
Solution 1:
I found out that the device only had an interrupt endpoint, which is reachable for the python implementation but not for the java one... I changed that and now it works!
Post a Comment for "Java: No Endpoint Found, But Python Works"