active questions tagged usbserial - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:01:19Z http://stackoverflow.com/feeds/tag/usbserial http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1652698/control-usb-ports 0 Control USB ports Raafat 2009-10-30T22:50:46Z 2009-10-31T14:56:41Z <p>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 this DLL contain Ruby code ??</p> <p>by the way this is just a training project, so it dosn't matter that much, i'm just practicing on those stuff under windows.</p> http://stackoverflow.com/questions/284285/c-serial-communication-with-u-blox-gps 3 C# serial communication with u-blox gps democomputer 2008-11-12T15:26:04Z 2009-10-07T22:19:21Z <p>Hi all</p> <p>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 watch the flow of data from the GPS.</p> <p>Then I want the data in my program, not so easy...</p> <p>I have implemented some methods using the serialPort class to read from the GPS, but am unsuccessful. I have programmed several serial device readers and writers before in C#, but this one stops me.</p> <p>As an example, the simple code in <a href="http://csharp.simpleserial.com/" rel="nofollow">simpleSerial</a> will not give you anything unless you unplug and replug the USB.</p> <p>Have tried reading it with matlab, which works great, but as the rest of my program that needs the GPS data is in c#, that doesn't quite fix the problem.</p> <p>Is there some high level C# things going on in the serialPort class that I can circumvent? Or is there any known problems reading USB-serialports, which I assume works like my GPS?</p> http://stackoverflow.com/questions/1157517/is-libusb-the-preferred-method-on-mac-os-x-to-access-usb-device 1 Is libusb the preferred method on Mac OS X to access USB device? stefanB 2009-07-21T06:10:05Z 2009-07-24T05:30:52Z <p>Is libusb the preferred method to talk to a device over USB (using AT commands) on OS X these days?</p> <p>Is there any high level equivalent in cocoa?</p> http://stackoverflow.com/questions/1018429/usb-clear-endpoint-feature 0 USB Clear Endpoint Feature CrazyChris 2009-06-19T14:57:39Z 2009-07-18T08:50:10Z <p>Hi,</p> <p>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 causes me a lot of trobule because I cant get it working. I think data toggle don't agree and I am missing some important data transfer, even not getting associated interrupt with that endpoing because of bad clear data toggle. I reset data toggle to 0 at set interface and clear feature, as pointed out in USB standard. Is there more situation when I should do this? Or is there easy way of error handling invalid data toggle. </p> <p>Thanks for anwsering. I have got usb analyzer, but I dosen't do me any good now. From what I can managed to gather and I think is happening. I set datatoggle bit in hardvare after Clear feature (as it should be done) for coresponding endpoint. Send some data, It is recived on PC. I know this form USB analyzer and I traced my Vcom driver with port monitor. Then I wait for some data as everything is configured (device enumerated and so on), the initial question is anwsered but the next one is not, after clear endpoint fature the PC side is asking the question again. This should trigger UBS interrupt for coresponding endpoint but it isint happening, again after some time there is clear endpoint feature and the same package, and it's get responded this time and again there is silence on the comunication protocol. I counted the requested tranfer versus missing interrupts and the ratio is exactly 2:1 so i think data toggling is set wrong by half of the time, but how can this be happening if i set data toggle bit every time I get clear endpoint feature. </p> <p>I hope I stated the problem clearly, for the harvare side I think the only rvelant thing is the bit I am setting. It states "Write a 1 to this bit to reset the endpoint data toggle to 0." Ok i think(hopefully) I solved the Clear endpoint fature, other errors were caused by other things, and cumulative problem was hard to catch. </p> http://stackoverflow.com/questions/603931/usb-virtual-com 0 USB Virtual COM 2009-03-02T20:49:32Z 2009-07-14T09:42:32Z <p>Looking for skeleton/source for embedded (non PC) USB Virtual COM implementation?</p> http://stackoverflow.com/questions/84755/which-thread-should-i-process-the-rxtx-serialevent-dataavailable-event 1 Which thread should I process the RxTx SerialEvent.DATA_AVAILABLE event? Jeach 2008-09-17T15:52:45Z 2009-06-18T09:00:04Z <p>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. </p> <p>My application has several threads and one of my biggest problems is that out of nowhere, I seem to be getting one to two extra bytes on my stream. I can't figure out where they come from or why. This problem seems to occur a lot more frequently when I write to the RxTx stream using another thread.</p> <p>So I was wonder if I should process the read on the current RxTx thread or should I process the read on another thread when I get the DATA_AVAILABLE event.</p> <p>I'm hoping someone might have good or bad reasons for doing it one way or the other.</p> http://stackoverflow.com/questions/138394/how-to-programatically-unplug-replug-an-arbitrary-usb-device 5 How to programatically unplug & replug an arbitrary USB device? Dean 2008-09-26T09:07:16Z 2009-06-15T14:41:02Z <p>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 programatic equivalent of the unplug/replug cycle?</p> http://stackoverflow.com/questions/771538/why-serialevent-ri-doesnt-work 0 Why SerialEvent.RI doesn't work? debita 2009-04-21T08:05:40Z 2009-05-20T06:37:13Z <p>Hi, I have two computers running this code: </p> <p>import java.io.<em>; import java.util.</em>; import gnu.io.*;</p> <p>public class Deb implements SerialPortEventListener, Runnable{</p> <pre><code>public static final int TIMEOUTSECONDS = 30; public static final int BAUD = 9600; static String telefono; static Boolean llamar = false; CommPortIdentifier cpiModem = null; SerialPort modem; BufferedReader is; PrintStream os; Thread hiloMarcado; int nConnects = 0; boolean flag = false; String line; public static void main(String argv[]) throws PortInUseException, UnsupportedCommOperationException, IOException, InterruptedException, TooManyListenersException { if (argv.length&gt;0) { telefono = argv[0]; llamar = true; } new Deb(); } public Deb() throws PortInUseException, UnsupportedCommOperationException, IOException, InterruptedException, TooManyListenersException{ Enumeration pList = CommPortIdentifier.getPortIdentifiers(); while (pList.hasMoreElements()) { CommPortIdentifier cpi = (CommPortIdentifier)pList.nextElement(); if (cpi.getPortType()==CommPortIdentifier.PORT_SERIAL) { SerialPort puertoSerie = (SerialPort) cpi.open("DEB", TIMEOUTSECONDS * 1000); puertoSerie.setSerialPortParams(BAUD, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE); puertoSerie.setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN &amp; SerialPort.FLOWCONTROL_RTSCTS_OUT); BufferedReader is = new BufferedReader(new InputStreamReader(puertoSerie.getInputStream())); PrintStream os = new PrintStream(puertoSerie.getOutputStream(), true); os.println("AT"); Thread.sleep(TIMEOUTSECONDS * 50); if (!is.ready()) { System.out.println("No hay un modem en " + cpi.getName()); } else { System.out.println("Hay un modem en " + cpi.getName()); cpiModem = cpi; } puertoSerie.close(); } } modem = (SerialPort) cpiModem.open("DEBita", TIMEOUTSECONDS * 1000); modem.setSerialPortParams(BAUD, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE); modem.setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN &amp; SerialPort.FLOWCONTROL_RTSCTS_OUT); is = new BufferedReader(new InputStreamReader(modem.getInputStream())); os = new PrintStream(modem.getOutputStream(), true); modem.addEventListener(this); modem.notifyOnDataAvailable(true); modem.notifyOnCarrierDetect(true); modem.notifyOnBreakInterrupt(true); modem.notifyOnCTS(true); modem.notifyOnDSR(true); modem.notifyOnFramingError(true); modem.notifyOnOutputEmpty(true); modem.notifyOnOverrunError(true); modem.notifyOnParityError(true); modem.notifyOnRingIndicator(true); /*System.out.println(is.read());*/ if (llamar) { hiloMarcado = new Thread(this); hiloMarcado.start(); } } public void serialEvent(SerialPortEvent event) { switch (event.getEventType()) { case SerialPortEvent.OE: case SerialPortEvent.FE: case SerialPortEvent.PE: case SerialPortEvent.DSR: System.out.println("Data Set Ready."); break; case SerialPortEvent.OUTPUT_BUFFER_EMPTY: System.out.println("Ignored event"); break; case SerialPortEvent.BI: System.out.println("Break Interrupt"); break; case SerialPortEvent.CTS: System.out.println("Clear to send"); break; case SerialPortEvent.RI: System.out.println("Pick up the receiver."); if( event.getNewValue() ) { System.out.println("Ring Indicator On"); } else { System.out.println("Ring Indicator Off"); } break; case SerialPortEvent.CD: if (event.getNewValue()) { System.out.println("Connected"); nConnects = nConnects + 1; } else { System.out.println("Disconnected"); } break; case SerialPortEvent.DATA_AVAILABLE: handleData(); break; } } public void run() { while (true) { if (nConnects == 0) { try { if (!modem.isCD()) { System.err.println("Estamos llamando ..."); os.println("ATDT" + telefono); } Thread.sleep(TIMEOUTSECONDS * 2000); } catch (Exception ex) { System.err.println("Failed to write message"); } } } } public void handleData() { try { int avail = modem.getInputStream().available(); byte[] response = new byte[avail]; StringBuffer strbuf = new StringBuffer(); modem.getInputStream().read(response, 0, avail); if (!flag) { modem.getInputStream().read(response, 0, avail); for (int i = 0; i &lt; avail; i++) { Thread.sleep(5); os.write((char) response[i]); System.out.print((char) response[i]); } } } catch (IOException ie1) { System.out.println("File " + ie1); } catch (InterruptedException in) { System.out.println("Interrupt " + in); } } </code></pre> <p>}</p> <p>It isn't the final version, I'm only seeing how it works. The thing is that when I use this code to dial to a phone number, for example, my mobile phone, it works, but it doesn't work the other way round; that is, calling from my number and acting the programme as a listener. I tried also with 2 computers, neither of them get the calls from the other end. Am I doing something wrong? I would appreciate any help.</p> http://stackoverflow.com/questions/84859/writing-data-over-rxtx-using-usbserial 1 Writing data over RxTx using usbserial? Jeach 2008-09-17T16:05:45Z 2009-02-24T09:00:31Z <p>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.</p> <p>One of my biggest problems is that the RxTx SerialPortEvent.OUTPUT_BUFFER_EMPTY does not work on linux over usbserial.</p> <p>How do I know when I should write to the stream? Any indicators I might have missed?</p> <p>So far my experience with writing and reading concurrently have not been great. Does anyone know if I should lock the DATA_AVAILABLE handler from being invoked while I'm writing on the stream? Or RxTx accepts concurrent read/writes?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows 6 How to sniff usb port under Windows? dpavlin 2008-09-22T20:39:03Z 2008-10-16T10:52:13Z <p>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.</p> <p>For USB traffic, it seems that <a href="http://www.pcausa.com/Utilities/UsbSnoop/default.htm" rel="nofollow">SniffUsb</a> is the clear winner... It works under XP and has much nicer GUI than earlier versions. It produce <em>huge</em> dump files, but everything is there.</p> <p>However, my device is in fact usb serial device, so I turned to <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">Portmon</a> which can sniff serial port traffic without USB overhead.</p>