2
votes
0answers
91 views

libusb_claim_interface fails on Mac OS X Mountain Lion

I've searched for hours with no avail. I've seen it everywhere that libusb_detach_kernel_driver isn't supported on Mac OS X, but I haven't been able to find a patch or alternative for it. ...
0
votes
1answer
280 views

how to use libusb and libusb_get_device_descriptor()

I'm learning to use libusb v1.0.0 for the first time on Ubuntu 12.10. Here is some small test code I'm using to try and understand how to use this API: #include <libusb-1.0/libusb.h> ... ...
0
votes
2answers
284 views

Modify libusb to accept file descriptor

I modified libusb1.0 open function as follows: static int op_open2(struct libusb_device_handle *handle, int fd) { struct linux_device_handle_priv *hpriv = _device_handle_priv(handle); ...
0
votes
0answers
104 views

Can't claim a interface for Kinect-Device (libusb issue -> Interface already BUSY)

I use OpenNI on a ARM-Board (Pandaboard with Ubuntu 12.04). Now I want to use PCl but to get this running I need to change the code a little. At the moment I stuck at a libusb specific issue. At the ...
1
vote
1answer
106 views

Strange macro declaration in C [duplicate]

Possible Duplicate: Why are there sometimes meaningless do/while and if/else statements in C/C++ macros? do { … } while (0) what is it good for? Exploring libusb-1.0.9 source code, ...
1
vote
3answers
2k views

libusb: Interface not claimed

Fellows, I'm trying to use libusb, but get the following error message: usbfs: process 24665 (myprogram) did not claim interface 0 before use I don't really understand why, because as far as I can ...
0
votes
0answers
153 views

How libusb works?

I mean, at which layer or level libusb communicates with a USB Device? I have been searching on it, all I can get are tutorials about using the API, I understand how one can use libusb to ...
1
vote
0answers
286 views

Reading values from a Power Meter via USB

Over the past two days, I am doing some reading on how to get data over USB from an external device which has no device driver installed. I have to read data from a WT500 Yokogawa Power Meter ...
0
votes
1answer
276 views

libusb 1.0 on Windows: extremely poor libusb_get_device_list performance

It takes 40 ms on Core i7 (Win 7 x64). And even worse - it makes my GUI laggy. Does anyone faced the same problem? Any solutions to improve performance? This is the latest libusb 1.0 release I'm ...
0
votes
1answer
1k views

How to use libusb with libevent?

I'm writing event-driven application using libevent and I need to do usb transfer using libusb-1.0. I wanted to use libusb_get_pollfds to get fds and add them to libevent like this: const struct ...
2
votes
1answer
2k views

Pyusb on Windows 7 cannot find any devices

So I installed Pyusb 1.0.0-alpha-1 Under Windows, I cannot get any handles to usb devices. >>> import usb.core >>> print usb.core.find() None I do have 1 usb device plugged ...
1
vote
3answers
3k views

How do I receive HID reports using libusb-1.0?

I have a USB HID scale that I need to fetch the weighing reports from. I am able to do this on Linux by reading 7 bytes at a time from /dev/hidraw#, but I would like to get the same information using ...