libusb is a library that gives user level applications uniform access to USB devices across many different operating systems.

learn more… | top users | synonyms

6
votes
2answers
1k views

Why does PyUSB / libusb require root (sudo) permissions on Linux?

I have been toying around with PyUSB lately, and found that it works beautifully on Linux (Ubuntu has libusb 0.1 and 1.0, as well as OpenUSB)... but only if I run the program with root privileges ...
1
vote
0answers
253 views

Set USB transfer type manually for a device

I try to run the Asus xtion on a ARM Board (Pandaboard) and I already installed and used the samples (e.g NiSimpleRead) provided by openni. To get these samples running on this Platform it needed some ...
3
votes
1answer
987 views

Software based Android accessory on Windows

I would like to turn my computer into an Android accessory using my application. So instead of a specialized hardware this will be just PC that will switch the phone into accessory mode, thus ...
2
votes
1answer
818 views

libusb bulk transfer

I am trying to implement user space usb driver using libusb1.0.9. I have lpc2148 blueboard(ARM7) with me..This board is loaded with opensource USB stack/firmware by Mr. Bertrik Sikken.. now my user ...
5
votes
5answers
5k views

Simple way to query connected USB devices info in Python?

How can we query connected USB devices info in Python? I want to get UID Device Name (ex: SonyEricsson W660), path to device (ex: /dev/ttyACM0) And also what would be the best Parameter out of above ...
3
votes
1answer
184 views

USB Programming with Qt

Is there anyway I can do USB programming in Qt? I am using Qt Creator 2.6 which is based on Qt version 5.0.0 and it is the latest Qt Creator which works with the Microsoft Visual Studio 2010 compiler. ...
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 ...
4
votes
1answer
789 views

I'm having trouble finding example code for libftdi's mpsse (SPI) mode

This is not a homework problem, though it is a work problem. Where months ago, I would have just written up a specification and the boss would have contracted it out, money's tight. So I'm trying to ...
3
votes
1answer
2k views

libusb interrupt transfer

I need to reverse engineer a driver for custom made HID USB device (some buttons and leds on an control panel). The driver is only available on Windows and we need a *nix implementation. The device ...
3
votes
3answers
1k views

libusb interface already claimed

I'm writing a device driver for a usb device using libusb. When I attempt to claim the device I get the error code LIBUSB_ERROR_BUSY (-6). According to the documentation that means that the device ...
2
votes
3answers
1k views

Use libusb with Delphi on Windows 64-bit?

After reading a little, I am concerned that my 32-bit Delphi application will not be able to use libusb 64-bit driver on Windows 7 and other 64-bit Windows systems, and that it will not be able to ...
2
votes
1answer
5k views

USB Programming with Objective-C

Can anyone tell me how to program USB devices with Objective-C as an iPhone application? I want to access USB device contents through iPhone
1
vote
1answer
403 views

Interfacing a libUSB device powered by V-USB library for AVR

I've wrote a simple program (based on the following tutorial) that send data from an AVR chip (Attiny 2313) to the computer via a USB port, since this device doesn't have a built-in USB port, I've ...
1
vote
1answer
290 views

how to get usb's urb info in linux

I'm try to get usb stick's urb info. And I write like follows: #include <sys/ioctl.h> #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> ...
1
vote
1answer
249 views

Handling UBS input only works once, unless I unplug and replug the hardware.

My code below gets a 4 bit of data from a USB device such as mouse. Everything works fine except that when I run the code and when it ends my mouse stops working. If I run my code again then it gives ...
1
vote
3answers
4k views

Libusb undefined reference to

I'm trying to set up libusb API on my OS. I downloaded libusb api on libusb.org. I followed the standard installation procedure: cd into directory ./configure make make check //without errors make ...
0
votes
1answer
133 views

how to detect multiple USB ports and read data from USB using python

I have been able to detect whenever a flash drive is inserted. However, (silly as it sounds) having trouble to detect if multiple USB be inserted. Also, i am having difficulty in writing the code to ...
0
votes
1answer
463 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
0answers
395 views

How can we get data from iOS device using USB commands when its connected with Mac?

When any iOS Device connected with Mac, I want device's all data in Custom developed desktop app (not Itunes), I want data like installed app list, all settings list, all installed provisioning ...
0
votes
1answer
191 views

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 for bus in ...