libusb is a library that gives user level applications uniform access to USB devices across many different operating systems.
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 ...
5
votes
2answers
488 views
Simulate a USB Device for Automation
I have to simulate a USB Device for automation and testing purposes (in Linux). Original driver/application for this device uses “libusb” to communicate with it.
I don’t have much experience in Linux ...
0
votes
0answers
189 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
392 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
1answer
354 views
pyUSB Not Discovering Devices
So, I've installed libusb and pyUSB on my OS X Lion (10.7.3) machine, and I have the following script running:
import usb
import time
if __name__ == "__main__":
while True:
busses = ...
0
votes
1answer
264 views
How to get information on the drive where the executable is located in c++
My app will be running from a USB key which have specific information like vendor-id, device-id, ... which I need.
I tried using libusb, but despite the fact that I still can't make it work properly, ...
0
votes
1answer
223 views
Controlling electronic components with USB?
I want to try something that I imagine is somewhat simple. I want to have a USB cable with an LED on it, and a python script that would have 2 possible arguments: "on" and "off". This would toggle the ...
1
vote
1answer
1k views
Trouble linking libusb using Cmake
I've been trying to 'hack' 2 programs together and one of them (openTLD) uses cmake. I've been reading up and working on this issue for a bit now and can't seem to sort it.
When I 'make' where there ...
0
votes
1answer
665 views
libusb 1.0 installation, for XP, for noob
I seem to be a fairly reasonable programmer once the configuration is set up, but am a noob at yak shaving, especially when there is a confusing choice of different yaks.
I am enjoying learning ...
1
vote
0answers
284 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 ...
3
votes
1answer
2k views
Accessing Linux /dev/USB as standard files to communicate with USB device
I'm researching ways to communicate with a USB device in Linux and would prefer to not write a Linux Kernel driver. I understand that libusb exists and is a user-land library that would work, but our ...
4
votes
2answers
1k views
usb getting data from device
I am trying to read data from a HID device. I have a usb-sniffer capture that basically does:
Get Device Descriptor
Get Device Descriptor
Set Address
Get Configuration Descriptor
Get Configuration ...
1
vote
1answer
146 views
LibUsbDotNet Barcode scanner
I have a barcode scanner. and i successfully generated the .inf for my scanner, and it install successfully. and i tried sample code, but i keep getting IoTimedOut:IoTimedOut:No more bytes! . Is it ...
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 ...
0
votes
2answers
152 views
Debug crashing C Library used in Python project
complete Python noob here (and rusty in C).
I am using a Mac with Lion OS. Trying to use NFCpy, which uses USBpy, which uses libUSB. libUSB is crashing due to a null pointer but I have no idea how to ...
0
votes
2answers
317 views
NFCPY/libUSB crashing running examples
I installed NFCPY, pyUSB and libusb on Mac Lion. I am using the common ACR122U NFC card reader and when I tried to run any of the examples it crashes. I know many people are using this same reader ...
0
votes
1answer
385 views
Writing data to USB device
I have a requirement to send some commands to a device(Cash drawer) connected to the USB port to open the drawer. The device may be from different vendors and manufacturers, so i need a common ...
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, ...
0
votes
1answer
156 views
Libusb on Ubuntu
I use libusb to make a program to read data from USB devices on ubuntu 11:04. Why, when multiple programs to read data from usb, only a new program activation is executed while the remaining programs ...
3
votes
0answers
942 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
416 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 ...
1
vote
1answer
527 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 ...
0
votes
1answer
84 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
1answer
183 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 ...
1
vote
2answers
575 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 ...
3
votes
2answers
2k 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
321 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 ...
5
votes
5answers
4k 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 ...
0
votes
2answers
265 views
FileInputstream android garbage
I am using this code to read input stream but its not working It s giving garbage value in buffer. what's wrong with the code below:
//mInputStream is an object of FileInputStream
buf = new byte[4];
...
1
vote
2answers
1k views
Embedded Linux USB device detect port and address
I'm developing a USB application for my board. It has two USB ports. When I plug in a USB drive in each of them I get the following messages on console :
On port 1 :
usb 1-1: new high speed USB ...
1
vote
1answer
374 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 ...
0
votes
1answer
1k views
libusb won't install?
I am trying to build a program that uses libusb and I get a lot of errors such as
i2cbrdg.c:84: error: implicit declaration of function ‘usb_init’
i2cbrdg.c:88: error: implicit declaration of ...
2
votes
1answer
993 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 ...
4
votes
1answer
316 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 ...
5
votes
2answers
4k 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
1answer
846 views
Linker error: Qt and libusb-win32
I try to develop a Qt GUI application which will communicate with a board using USB. The library I use is libusb-win32 v1.2.5.0.
When I compile the application, the following errors occur:
...
2
votes
2answers
661 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
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 ...
0
votes
1answer
430 views
Lib usb how to read character from port
I want to write an application that reads data from the USB device and was looking for a library that can make the job easier. I found a library called lib-usb. Unfortunately, it has almost no ...
0
votes
2answers
828 views
How to detect “Over Current” event of an USB device?
I have to detect the event "over current" of an USB device.
I'm developing in a Linux system and C/C++ language.
How do I do that?
0
votes
1answer
557 views
libusb not visible in IDE
I m using Code blocks in Ubuntu Linux. I would like to write programs with the library libusb. I have this file in the system, but the complier in the IDE cannot find this file. I add in "build ...
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 ...
9
votes
2answers
4k 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>
...
2
votes
1answer
182 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 = ...
2
votes
2answers
3k 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 ...
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 ...
1
vote
3answers
3k 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 ...
1
vote
1answer
910 views
libusb-win32: Automated installation of a driver filter
I've faced a problem getting my libusb-w32 based program to detect devices.
The program has to detect digital cameras, and I need to automatically install driver filter for any new camera to be ...
1
vote
1answer
303 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 ...
