Tagged Questions
0
votes
1answer
62 views
C++ look-up USB devices mount point
I need to look-up the USB devices connected to the computer board running Linux.
To do so I have used 'libusb' library, which works great and I can retrieve the manufacturer, serial nnumber, product ...
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 ...
2
votes
2answers
347 views
How to get device path using libusb in Linux
I was looking for a cross platform way of getting usb arrival and removal events in C# and i found "LibUsbDotNet C# USB Library" (http://sourceforge.net/projects/libusbdotnet/?source=navbar).
It ...
1
vote
1answer
119 views
How to get USB device details in kernel programming?
I am new to kernel programming and I have dev_t value of a USB device.
I want to get the details of the device like vendor ID, product ID, or some other attribute which will vary from device to ...
0
votes
1answer
117 views
libusb in linux
I like to do usb programming with libusb.
I installed it using
$ apt-get install libusb-1.0
and then
$ apt-get install libusb-1.0-0-dev
but after I tried to use it in c code, there are compiler ...
0
votes
1answer
683 views
linux / libusb get usb device path
I use libusb to enumerate over a few usb-devices. Now i like to get the "device-path". I think it's not called usb device-path, because i was not successful with google.
If i connect a usb-device ...
1
vote
2answers
637 views
Commanding a Stepper Motor Controller over USB
I am trying to do some experiments on the Trinamic StepRocker Stepper Motor Controller in Gnu/Linux. I had attahched the device through USB to a Windows machine previously and used Trinamic's ...
1
vote
1answer
461 views
Install usblib package - Ubuntu
I need the package libusb for another package I am installing.
I tried the following which seemed to install the package,
sudo apt-get install libusb-dev
but when I try to install the other ...
0
votes
1answer
227 views
libusb bulk transfer in pen drive
I am using libusb to interact with pen drive. We have to use the function
int libusb_bulk_transfer(struct libusb_device_handle * dev_handle, unsigned char endpoint,
unsigned char * data,int ...
4
votes
1answer
418 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 ...
0
votes
1answer
178 views
Is there a way to get the device node of a usb device using libusb APIs?
I am trying to get the device node (eg. /dev/sdb) of a usb device.
I was wondering if there is any libusb API that would give me the particular device node to which the USB device is associated ...
1
vote
1answer
143 views
Porting windows USB HID code to libusb
I'm trying to port some windows code that uses HidD_GetInputReport to linux using libusb. From what I can tell I need to make a call to usb_control_msg but I'm having problems figuring out what ...
3
votes
1answer
249 views
Converting a driver to linux
I'm trying to write a linux driver to a device that i have the windows driver of (Similar to the case described Here, but a different device)
I'm using Libusb for the communication on the linux side, ...
0
votes
0answers
184 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: ...
1
vote
1answer
243 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>
...
5
votes
2answers
480 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
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 ...
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 ...
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 ...
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
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
2answers
659 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
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
429 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
827 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?
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 ...
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 ...
1
vote
1answer
777 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 ...
2
votes
2answers
5k views
libusb basic example wanted
I'm writing user-space program that is intended to control some device via usb so I decided to use libusb (libusb-1.0) to send control messages to and receive responses from that device.
But I ...
1
vote
1answer
703 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 ...
2
votes
4answers
3k 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 ...
