On Fri, 13 Dec 2002, Benjamin W. Dugan wrote: >So: I added a call to usb_claim_interface in the test program >testlibusb.c, and it returns -16, which usb_strerror converts to: > > "Could not claim interface 0: device or resource busy"
the device (interface) already has a driver, so you can't talk to that interface. However to read strings, you talk to the device, so the format of the header is wrong - its recipient should be device, not interface (or endpoint). -- Dan Streetman [EMAIL PROTECTED] --------------------- 186,272 miles per second: It isn't just a good idea, it's the law! ------------------------------------------------------- This sf.net email is sponsored by: With Great Power, Comes Great Responsibility Learn to use your power at OSDN's High Performance Computing Channel http://hpc.devchannel.org/ _______________________________________________ [EMAIL PROTECTED] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
