Tagged Questions

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
1answer
2k views

Android ADK with PC as USB Host with libusb, bulk transfer error

I'm trying to make my PC the USB Host for Android 2.3.4 devices in order to be able to develop APIs without needing actual "accessories". To do this, I need to establish the PC as the USB Host and ...
6
votes
7answers
672 views

Input from 20+ microphones

I've been asked (if it's possible) to write a program monitoring the input of at least 20 microphones, on a single computer. Currently I'm prototyping in python (2.6), on a Ubuntu system using Alsa. ...
5
votes
2answers
597 views

How to give /dev/bus/usb permissions for libusb android applications?

i am developing an Application that uses libusb via jni. this application is currently targeted only to rooted, usb-host Android 3+ machines. the scenario is as follows: <java Activity> ...
4
votes
5answers
294 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 ...
4
votes
1answer
124 views

Do I even need libusb?

I have a feature request on a project I work on, it is to integrate with a Paylife CC handheld, which has a USB connector to connect with the computer. I have the docs, and am reading up on it. When ...
4
votes
5answers
193 views

Java DLL linkage error

I am using libusb-- http://sourceforge.net/apps/trac/libusb-win32/wiki However, I get: Exception in thread "main" java.lang.UnsatisfiedLinkError: USBManager.usb_init()V public class ...
4
votes
2answers
639 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 ...
3
votes
3answers
212 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 ...
3
votes
1answer
548 views

libusb crash on Android ARM device/emulator

I'm using the NDK to compile libusb (both from the prebuilt one supplied at: https://github.com/monaka/libusb-android) as well as using his changes to compile the latest available (libusb-1.0.8). It ...
3
votes
1answer
435 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
1k views

USB - sync vs async vs semi-async (partially answered now)

Updates: I wrote an asynchronous C version and it works as it should. Turns out the speed issue was due to Python's GIL. There's a method to fine tune its behavior. sys.setcheckinterval(interval) ...
2
votes
2answers
154 views

pyusb: cannot set configuration

I am trying to make a script (on linux) that can turn a light in my mouse on or off. This is the code I have so far: import usb.core import usb.util import sys interface = 0 dev = ...
2
votes
1answer
183 views

LUFA Coding an Example for AT90USB162

I'm with an open-source USB library for the USB-enabled AVR microcontrollers, LUFA (2011-10-09), and I am trying to code the CDC (a bootloader) example to my AT90USB162 chip. The sample code is in ...
2
votes
1answer
476 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 ...
2
votes
2answers
130 views

Weird memory corruption

This error only is occuring when I build with the WinDDK nmake compiler in 'free' (release), which performs optimizations. I can't reproduce this in the 'checked' build or compiling with VS. Here is ...
2
votes
1answer
695 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 ...
2
votes
3answers
616 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
391 views

libusb: get Device by serial number

libusb lets you find a device by it's vendor and product ID. But what if I have several devices with the same VID and PID attached, and want to get a handle to one of them by knowing it's serial ...
2
votes
1answer
1k views

Is there an alternative to libusb-win32 for 64bit windows?

I've been developing some software which uses the libusb-win32 library to interact with some USB hardware I've been developing. Now I'm trying to run the same software on windows 64 but the drivers ...
2
votes
1answer
437 views

Installing unsigned x64 driver to work with libusbdotnet

I am currently in a Windows 7 dev. environment working to get a device to initialize with libusbdotnet. The device (a USB mass storage device) connects and runs using the default USB-MASS Storage ...
2
votes
3answers
1k views

Some help understanding async USB operations with libusb-1.0 and ctypes

Alright. I figured it out. transfer.flags needed to be a byte instead of an int. Silly me. Now I'm getting an error code from ioctl, errno 16, which I think means the device is busy. What a ...
2
votes
4answers
2k views

Problem reading from a device with libusb

The situation is this: I have a USB device (a custom device I'm trying to talk to) with two endpoints, one writing to the device, one reading from the device. Both are bulk transfers. Every ...
1
vote
1answer
37 views

ControlTransfer instruction not sending value parameter from setup packetr in LibUsbDotNet

I have a USB device that I need to be able to talk to from a .net application. The device is not a standard HID device and in order to initilise it I've been given a trace of packets from a USB ...
1
vote
1answer
74 views

No USB traffic when reverse engineering game controller

I'm trying to make a Mac driver for an electronic drum/xbox controller ION Drum Rocker. Using usbmon/usbdump, I can get traffic on a normal USB keyboard just to see if it works. But there's not a ...
1
vote
1answer
163 views

Seeking libusb_device tutorial and/or examples

Like the title says (for Delphi 7). It seems that GINMF (google is not my friend) Can anyone point me in the right direction? Thanks in advance Update: Delphi only, please, not just the generic ...
1
vote
2answers
256 views

Compiling against libusb-dev on Ubuntu

I am trying to compile the example libusb.c provided by libusb package (if you dl the source code.) It doesn't work to say the least. #include <stdio.h> #include <sys/types.h> #include ...
1
vote
2answers
117 views

(Linux) Get /dev/input/eventX from an attached USB device with PID:VID

So my daemon will sit there and listen to udev, waiting for connect/disconnect events so it can notify the other thread to attach or stop reading from the /dev/input/eventX file. Essentially, it's ...
1
vote
1answer
112 views

Libusb interrupt transfer callback

I'am working on a real-time control system that calculates the control signals in a buffered fashion (a user-mode program) and outputs to the usb device the array through isochronous transfers. The ...
1
vote
1answer
212 views

Linux USB Application using libusb

I am trying to write an application to read and write to a connected USB device. I am using libusb. It seems after I find the device, configuration fails. I am following the developers guide for ...
1
vote
1answer
70 views

libusb seems to fail under a class coding structure but works without one?

I have a simple working example using Python/NXT/libusb as follows (note: using Lego's NXT which has a USB interface): import nxt.locator from nxt.motor import * def flip_cube(b): m_arm = ...
1
vote
2answers
561 views

Android SDK source page : OEM Drivers Huawei link is broken

In the Android source download links for OEM USB Drivers at http://developer.android.com/sdk/oem-usb.html - the link for the Huawei driver results in a page not found, anyone have an updated working ...
1
vote
1answer
122 views

PTP over usb on windows phone 7

I am trying to write a small app which can communicate with USB device when connected to a WP7 device. Is it possible to use PTP protocol over USB from a WP7 device? Does a phone needs to support USB ...
1
vote
0answers
62 views

Reg:how to access the apis's of USB libaries in android

I am using android 2.2 version. I want to use the USB related API's in android application. but in android 2.2 version is not having the API's in the applicaition framework layer.It is available in ...
1
vote
1answer
1k views

Android Serial Port (USB)

I need to write some "raw" data to the usb port for a project of mine (no prob if root should be required). I found a port of libusb for Android here and I managed to compile with NDK. I linked the ...
1
vote
1answer
59 views

Java application on Windows system running as USB peripheral

Is there a way to have a USB device act as a Host and an application on a Windows based system to act as the Peripheral? We have a USB device that is the host and we need it to connect to our ...
1
vote
1answer
294 views

USB driver tests on embedded linux device

I am looking for and open source test suite to test the USB drivers on an embedded linux device. Any suggestions are welcome ? I am reading through this link : http://www.linux-usb.org/usbtest/ If ...
1
vote
1answer
232 views

How to determine the currently active USB configuration with libusb 0.1

How can I find out which USB configuration of a USB device is the current active one? I use libusb 0.1 (Not the newer 1.0 because I need libusb-win32) and there is only a usb_set_configuration() ...
1
vote
1answer
207 views

Reading the data from USB device using libusb

[DllImport("winusb.dll", SetLastError = true)] internal static extern Boolean WinUsb_ReadPipe(IntPtr InterfaceHandle, Byte PipeID, ref Byte Buffer, UInt32 BufferLength, ref UInt32 LengthTransferred, ...
1
vote
1answer
375 views

Why won't my program read from a usb interrupt endpoint

I am writing a libusb program to interact with a usb gamepad. I found it, opened it, detached from kernel, claimed interface, and when I try to usb_interrupt_read it returns -110 (resource temporarily ...
1
vote
1answer
170 views

ruby equivalent of a c buffer

I am working on a small script using the USB bindings for ruby. Since this is just a wrapper around libusb, all of C++'s features are visible through the abstraction, for example when usb_bulk_read ...
1
vote
2answers
325 views

How do I flash an LED, using libftdi v0.18?

It's a FT2232D chip, and the LED is connected to BDBUS6. The library is less documented than I might like (better than FTDI's own library though, which doesn't even work on modern kernels), the only ...
1
vote
0answers
1k views

Python libusb pyusb “mach-o, but wrong architecture”

I am having some trouble with the pyusb module. I have narrowed down the problem to a single line, and have created a small example script to replicate the error. #!/usr/bin/env python """ This ...
1
vote
1answer
3k 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
0
votes
0answers
16 views

Changing speed in USB devices

I am using libusb for USB testing. I want to configure the speed for USB devices. Is it possible to change the speed?
0
votes
0answers
19 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 ...
0
votes
1answer
38 views

Reading rfid tag from USB

I want to capture data from an RFID Tag that is coming from my USB port. My questions are as follows:- Any suggestions of a software that can sniff this data from the USB port? How do I receive this ...
0
votes
1answer
21 views

Reconnect to a device after device crashed

I have the following problem with the libusb-java and some self-made devices. It could happen that such a device disconnects from the USB Port because it drains to much power (as an example: i have a ...
0
votes
0answers
17 views

Increase USB polling rate across all devices in linux? [migrated]

I just came across this tweak that permits one to increase the polling rate of a usb mouse to 1KHz. Is it possible to achieve the same increase to other USB devices (or all USB devices)?
0
votes
1answer
40 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 ...
0
votes
1answer
32 views

libusb-win32 - can't read from keyboard

I'm trying to write a custom 'driver' for a keyboard (HID, if it matters), under Windows 7. The final goal is having two keyboards connected to the computer, but mapping all of the keys of one of them ...

1 2