Tagged Questions

0
votes
1answer
86 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 …
1
vote
1answer
270 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?
0
votes
3answers
155 views

USB Clear Endpoint Feature

Hi, 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 …
3
votes
11answers
2k views

C# serial communication with u-blox gps

Hi all I have a GPS from u-blox.com with a USB-connection and driver. The driver installs a virual COM port that pops up when you plug the USB in. Using a hyperterminal I can then …
5
votes
13answers
2k 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 comman …
0
votes
2answers
153 views

Why SerialEvent.RI doesn’t work?

Hi, I have two computers running this code: import java.io.; import java.util.; import gnu.io.*; public class Deb implements SerialPortEventListener, Runnable{ public static fi …
0
votes
2answers
136 views

USB Virtual COM

Looking for skeleton/source for embedded (non PC) USB Virtual COM implementation?
5
votes
3answers
2k 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 traf …
0
votes
1answer
395 views

Which thread should I process the RxTx SerialEvent.DATA_AVAILABLE event?

I'm using the RxTx library over usbserial on a Linux distro. The RxTx lib seems to behave quite differently (in a bad way) than how it works over serial. My application has sev …
1
vote
2answers
730 views

Writing data over RxTx using usbserial?

I'm using the RxTx library over usbserial on a Linux distro. The RxTx lib seems to behave quite differently (in a bad way) than how it works over serial. One of my biggest problem …