libusb is a library that gives user level applications uniform access to USB devices across many different operating systems.
4
votes
1answer
417 views
Accessing a USB device with libusb-1.0 as a non-root user
I am trying to interface with a USB device as a non-root user on RHEL5. The device is a GPIO interface (its documentation can be found at http://www.xdimax.com/sub20/sub20.html) which uses ...
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
0answers
96 views
LibUsbDotNet returns garbage
I wrote an application to read a magnetic card-reader through usb. I used the libusbdotnet because it communicates directly with libusb 1.xx on linux. When I pull the card through. i get al lot of I ...
3
votes
0answers
937 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
0answers
172 views
Opencv webcam with libusb driver python
I'm working with python and using wx for my GUI. I'm using OpenCv to capture frames from my webcam and this works fine when using the webcams default driver. However, I'm also trying to use pyUSB with ...
2
votes
0answers
487 views
libnfc: SCL3711 “No NFC device found” on Windows 7
I am attempting to use libnfc to allow NFC operations on Windows 7. I am using the SCL3711. The device shows up when running testlibusb, so it would seem that LibUSB is functioning correctly. However, ...
1
vote
0answers
54 views
PyUSB library using too much CPU time
I have a piece of code that continuously monitors a USB HID device for input.The device is a infrared receiver for a remote control.
I am trying to program using PyUSB which is a python wrapper for ...
1
vote
0answers
129 views
USB 2 prober for mac?
I'm trying to write a little driver for a Tengu usb device. I tried using USB Prober.app but it seems it can only probe USB 1 devices (my old Logitech mouse can be probed). Is it possible to sniff ...
1
vote
0answers
61 views
lsusb: only 1 endpoint available
I am trying to communicate with a device (that has no linux driver) via libusb. I have written a lot of the basic code and used USB snooping software on windows (for which there is a driver) to find ...
1
vote
0answers
86 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.
...
1
vote
0answers
226 views
libusb Windows using WinUSB BulkTransfer receiving inconsistant
I am attempting to communicate with a custom USB device through windows using libusbx. I have the WinUSB driver installed for the device and am able to get some communication to happen. It's just not ...
1
vote
0answers
239 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 ...
1
vote
0answers
442 views
How to give libusb 0.1.12 permissions for Android?
I have to use libusb in my Android project. So far I have read alot on the internet that it is not so easy to use libusb with Android. I read something about init.rc and ueventd.rc and that I have to ...
1
vote
0answers
494 views
JNI ported libusb-compat can't find devices in application, can outside application
I have a Samsung Galaxy SII which has USB host support built in, and a Motorola Droid (original) which also has USB host "hacked" in. The SGSII runs Android 3.x and the Droid runs 2.x.
I ported ...
1
vote
0answers
281 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 ...
1
vote
0answers
226 views
linux usb libusb parsing non standard descriptors
I'm using libusb for user-mode USB handling in an application. For now, it works quite nicely with some of the simpler USB devices I can find (like mass storage devices), but for more complicated ...
1
vote
0answers
322 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
0answers
2k 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
0answers
223 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
0answers
2k 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
0answers
3k views
Problem when read and write to USB using libhid
I want to write and read a response from USB HID device in Linux using user space library. Googling for a while, I found that libhid will be a solution for the problem.
So, when I use ...
0
votes
0answers
13 views
Using USBASP programmer for SPI communication
Currently I'm trying to send some data from PC to ATmega328P chip through USBASP programmer.
It is able to transmit up to 4 bytes over SPI. These 4 bytes сan be set in USB Setup Packet (2 bytes for ...
0
votes
0answers
50 views
How to setup LibUSB with QT Creator?
have installed LibUSB, but I still can't set it into QT creator.
Following is my .pro file
#-------------------------------------------------
#
# Project created by QtCreator 2013-05-08T20:27:36
#
...
0
votes
0answers
20 views
How to setup LibUSB with Visual C++ 2010 express/professional
I have installed LibUSB, but I still can't set it into VS c++ 2010. I have added C:/Users/yohan/Documents/LibUSB/libusb-win32-bin-1.2.6.0/include into Configuration Properties -> VC++ Directories -> ...
0
votes
0answers
50 views
Using libusb on Android without rooting
I am trying to communicate with USB device from Android-based smartphone via OTG. I was able to communicate with my device using Androiid USB Host API. The problem of USB Host API solution is ...
0
votes
0answers
28 views
PyUSB set_configuration() failed on Galaxy Nexus
I am trying to enable AOA mode in Galaxy Nexus i9250 with PyUSB. Before doing that, I wrote a PyUSB code to reveal its descriptor.
import sys
import time
import usb.core, usb.util
dev = ...
0
votes
0answers
55 views
real time data recording in android via USB
I am trying to build this oscilloscope circuit that generates analogue signals at various frequencies. Say for example the 512 Hz button is pressed then it will generate a sine wave at 512 Hz, if 256 ...
0
votes
0answers
82 views
How to control Enttec Open DMX USB via Python?
I'm wondering is that possible to control lights connected to Enttec Open DMX USB via Python shell. If it is, how to?
0
votes
0answers
56 views
Does libusb allow for USB 3.0 speed?
I'm writing a custom application for a hardware project using USB 3.0. I need at least a gigabit/s link (I'm trying to stream data as rapidly as the sensors can manage to the machine doing the signal ...
0
votes
0answers
75 views
automatic usb device detection libusbjava
I have installed libusb-win32-bin-1.2.6.0 and also LibusbJava
Am just getting the basics going at the moment - so I am looking at how usb device discovery is achieved
I have got some basic code ...
0
votes
0answers
32 views
DeviceNotifier in LibUsbDotNet not working as expected
I have a device manager class which manages a number of devices attaced to my PC, some of the devices are USB based devices which are not a standard USB class and as such require custom code, for ...
0
votes
0answers
172 views
Read/Write on a Pen Drive using libusb : libusb_bulk_transfer()
I am newbie in device driver programming. I am trying to perform Read and Write operation on a Pen Drive.
Details: Vendor ID : 8564 and Product ID : 1000. It is a Transcend JetFlash mass Storage ...
0
votes
0answers
190 views
In android usb-host mode, how to read bytes on a particular index?
I am trying to write an android application to read/write files from connected USB drive (FAT file system).I am able to use android usb host api's to identify endpoints and make a bulk transfer and it ...
0
votes
0answers
105 views
Windows can't verify libusb-win32's publisher
I am trying to install libusb-win32-1.2.6.0, which comes with a valid digital signature.
But when installing I still get a popup from Windows: "Windows can't verify the publisher of this driver ...
0
votes
0answers
115 views
libusb data output
I am trying to output a data by using libusb_interrupt_transfer, the function returns 0, however, I cannot see any data transfer output from Wireshark (on the usb sniff mode) and the device does not ...
0
votes
0answers
156 views
Problems building javax.usb - reference implementation and linux implementation
For javax.usb, there are three modules:
javax-usb
javax-usb-ri
javax-usb-ri-linux
The faq indicates that in order to use javax-usb, one must build all three modules. Each module has an associated ...
0
votes
0answers
62 views
CRC errors in Isochronous transfers
From what I read, if there is an error in a USB Isochronous transfer, the packet is dropped and no notification is sent to the sender. However, is any notification sent to the receiver that a packet ...
0
votes
0answers
183 views
no response from libusb_interrupt_transfer
My question is very similar to the question posed here: libusb interrupt transfer
I am reverse engineering a driver Linux-G13_1.0-r44.zip
found here: ...
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 ...
0
votes
0answers
49 views
Windows: Is it possible to set SSL connection using OpenSSL to communicate USB device via LibUSB?
I am trying to communicate with a device via USB using LibUSB. Until now I used libusb. I want to add SSL layer on top of usb bulk. I use OpenSSL for that matter.
In order to tell ssl_bio where to ...
0
votes
0answers
601 views
PyUSB - “usb_claim_interface: couldn't claim interface” error on OS X 10.7.4
The exact error is: usb.core.USBError: [Errno None] usb_claim_interface: couldn't claim interface
I'm using pydev 1.0 (with libusb 1.0.9) to interface with a sensor. I've tried fiddling with various ...
0
votes
0answers
158 views
LibUSBJava write failed
I want to write data to a USB camera on Java. For doing that, I'm using LibUSBJava. I can open USB camera and read data successfully, but when I try to write data, I can not find any output endpoint ...
0
votes
0answers
369 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
0answers
266 views
Usbser.sys - Creates a new modem in xp and not in windows 7
I am making use of USEBSER.SYS in my inf. There is no problem in driver installation and the device is working fine with the driver detected, both in
win7 and winxp.
In winxp,a new virtual com port ...
0
votes
0answers
126 views
Data transfer mode selection
I have to get real time data from usb usling libusb please suggest me which to choose asynchronous or synchronous data transfer ; control, bulk ,interupt data transfer. Please help me with it also do ...
0
votes
0answers
151 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 ...
0
votes
0answers
185 views
USB: How to explicitly check if a particular Endpoint is STALLED or not?
Currently I am writing a USB Class driver above USB Core (libusb). I have a situation where explicitly checking if there is STALL on a particular Endpoint is really helpful.
The actual scenario is ...
0
votes
0answers
389 views
libusb bulk transfer
Dear stack overflowers
I am making a project for my exam using an USBD480 TFT LCD and after a long fight with all the functions of USB library (libusb.h), I managed to get it to open device and claim ...
0
votes
0answers
92 views
Can custom USB devices be made to work with an Apple iPad?
I make LED glow toys for a living and am in the process of porting the windows drivers over to MAC and Linux O/S's. I'm making some headway on the MAC front (I'm using libusb) but now I'm wondering if ...
0
votes
0answers
63 views
libusb 0.1 - proper device/library shutdown
Using valgrind, I found out that libusb 0.1 allocates some 80 kB of memory of internals (at least at my machine), but I can't find a way how to clean these and terminate the library on program exit ...
