Tagged Questions

14
votes
3answers
12k views

How to sniff usb port under Windows?

From time to time I need to dump usb traffic under windows, mostly to support hardware under Linux, so my primary goal is to produce dump files for protocol analysis. For USB traffic, it seems that ...
10
votes
14answers
9k views

How to programatically unplug & replug an arbitrary USB device?

I'm trying to fix a non-responsive USB device that's masquerading as a virtual com port. Manual replugging works, but there may be up to 12 of these units. Is there an API command to do the ...
3
votes
4answers
7k views

USB Communication with Android/Arduino

I am working on this Android application that needs to communicate over USB. I have an Archos 101 Tablet (specifications here: ...
2
votes
1answer
318 views

Android USB Accessory Communication with Linux System

I am trying to setup a Nexus One phone to communicate with an application running on a Linux tablet. On the phone side of things, the Nexus One is Android 2.3.4 so it has the USB accessory library ...
2
votes
2answers
567 views

How to uniquely identify two identical USB-serial adapters in Linux

I have an embedded board running Linux which has two identical 4-port FTDI USB-serial chips. The USB-serial chips are hard wired to individual USB ports on the motherboard. There is no way for these ...
2
votes
1answer
472 views

USB Endpoint Stalled Error

I am getting "endpoint stalled error" in my CDC device. The usb stack is detecting the cable. The state is set as running but the errorcode is set as 0x11 which indicates 'USB_ENDPOINT_STALLED'. I ...
2
votes
2answers
2k views

Is libusb the preferred method on Mac OS X to access USB device?

Is libusb the preferred method to talk to a device over USB (using AT commands) on OS X these days? Is there any high level equivalent in cocoa?
1
vote
1answer
28 views

Why isn't my USB-To-Serial Adapter Working?

I have a USB-to-Serial Adapter that is being recognized on my Mac in the System Information as being connected to the USB Hub but when I run ls /dev in Terminal the usbserial is not showing up. It was ...
1
vote
2answers
266 views

USB Serial/CDC function driver

OS: Ubuntu Linux 10.10 Kernel: 2.6.35-30 Query: I need to establish a robust communication between a Windows process and an embedded device on the above platform. What can be a possible solution in ...
1
vote
3answers
709 views

Can Android OS be programmed to interface with a external device via the mini-USB port?

Basic example, if I bought a chipset with a light socket and bulb soldered to the chipset; then put a USB cable with the mini-USB plug on the end to get plugged into the android phone. Can I write a ...
1
vote
1answer
396 views

Identifying a device by retrieving its USB ID

I'd like my application to be able to detect a where a particular USB device has been mounted, and adapt accordingly. Ideally, I'd associate paths with a USB serial number, rather than with a given ...
1
vote
1answer
1k views

Control USB ports

can i send specific signals to USB ports using Ruby or C++, also the operating system is Windows, so this is like totally new 4 me (to program for windows), so i'm trying to do it as a DLL file, can ...
0
votes
0answers
35 views

Point to milti-point over USB hub

Disclaimer: I am a pure s/w guy and know nothing of h/w, nor have I previously written code to interface with USB. please bear with me and if what I ask needs clarification, please ask. Thanks & I ...
0
votes
0answers
139 views

Who has the usb cable driver of the Alcatel OT-806D? [closed]

I want to install the USB cable driver of my Alcatel OT-806D in order to make a serial port communication between the mobile phone and a computer running windows xp. So I want to know if someone has ...
0
votes
1answer
428 views

How to watch/change windows buffer size for rs232(com)?

I'm using usb for communication, our device send 100k/s data(arm7, very small memory size), and PC need receive and process them all. my previous design is make device as a mess storage device, and ...
0
votes
1answer
784 views

How to simulate a USB drive

Is it possible to simulate a USB drive with software only? I mean, for example, to expose a local memory space to the OS so the device manager will recognize it as a USB device. I'm not familiar with ...
0
votes
2answers
1k views

USB Serial cable with CDC support

I bought a USB to Serial cable which claims to be CDC compliant. But the bInterfaceClass value in interface descriptor is 0xFF(which is vendor specific). I was expecting it to be 0x02 (Communications ...
0
votes
3answers
888 views

USB Clear Endpoint Feature [closed]

I am developing CDC driver for USB device and I stumble on some problem. The driver I am using on windows side uses Clear endpoint Feature as some kind of flish mechanism or to get data right. That ...