Tagged Questions
0
votes
0answers
58 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
1answer
106 views
USB permission error using libusb
I am trying to create a driver for a USB-to-DMX converter (Velleman VM116.)
The problem I have is that when I try to open the USB device and configure it it returns a error: Configurating USB failed: ...
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.
...
0
votes
2answers
109 views
octal constant error (libusb)
I am running Ubuntu 12.04 compiling a c++ file which has the following code
#include <iostream>
#include <libusb-1.0/libusb.h>
using namespace std;
int main(){
//pointer to pointer ...
0
votes
1answer
108 views
Compiler error libusb [closed]
I am running Ubuntu 12.04 and using c++ I have the following code
#include <iostream>
#include <libusb-1.0/libusb.h>
using namespace std;
int main(){
//pointer to pointer of device ...
0
votes
2answers
112 views
LIBUSB compile error
I am running c/c++ on Ubuntu and trying to compile the following code
#include <cassert>
#include <cstdio>
#include <libusb-1.0/libusb.h>
int main() {
libusb_context *context = ...
1
vote
2answers
179 views
Libusb and how to use its packages in ubuntu
I have a different question which I cant find on any other forum ...
I have installed libusb by using the following command i am not sure if it was right or not and the command was
sudo apt-get ...
0
votes
1answer
261 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>
...
...
4
votes
2answers
171 views
Program design for USB protocol implementation
I have a USB protocol that I want to implement but I'm a little lost on the best way to do it.
The USB protocol involves exchanging data and acknowledgement packets back and forth like so:
Device: ...
1
vote
1answer
338 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 ...
0
votes
0answers
116 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 ...
1
vote
1answer
106 views
Strange macro declaration in C [duplicate]
Possible Duplicate:
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
do { … } while (0) what is it good for?
Exploring libusb-1.0.9 source code, ...
1
vote
1answer
246 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>
...
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 ...
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 ...
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
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 ...
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 ...
2
votes
2answers
662 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 ...
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
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 ...
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 ...
0
votes
1answer
1k views
How to use libusb with libevent?
I'm writing event-driven application using libevent and I need to do usb transfer using libusb-1.0.
I wanted to use libusb_get_pollfds to get fds and add them to libevent like this:
const struct ...
0
votes
1answer
1k views
libusb communicate with USB mass storage
I'm currently writing a javax-usb (JSR-80) implementation using libusb 0.1 as a backend. I need to test the bulk transfer functionality and my guess is that the easiest way to do this is to ...
1
vote
3answers
3k views
How do I receive HID reports using libusb-1.0?
I have a USB HID scale that I need to fetch the weighing reports from. I am able to do this on Linux by reading 7 bytes at a time from /dev/hidraw#, but I would like to get the same information using ...
1
vote
1answer
485 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() ...
3
votes
1answer
11k views
How to set up libusb on Mac OS X?
I'd like to try to make a user-space device driver using libusb on Mac, but I'm confused where to start. In the SDK installer (which I got from http://www.ellert.se/twain-sane) it said something about ...
2
votes
3answers
770 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 ...
4
votes
1answer
761 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 ...
0
votes
3answers
326 views
GCC compilation error
When I tried to compile a program this came up:
C:\Users\Mohit\Developer\C_Workspace\iPhoneInteraction\Debug>make all
Building file: ../src/test.c
Invoking: Cygwin C Compiler
gcc ...
0
votes
2answers
313 views
C-code (class/framework/library) in Objective-C
How can I reference a class/framework/library like libusb in an Objective-C class?
Currently I have tried to initiate an enum/struct-function from the library inside my @interface in my .h-file.
But ...
