Tagged Questions
A serial port is a physical interface through which data is transferred (uni- or bidirectionally) one bit at a time. Largely superseded in the consumer market by USB, serial connections are still commonly used in many other specialist applications. Typical applications include scientific/medical instruments, industrial controllers and server diagnostics.
32
votes
2answers
569 views
Use a handheld bluetooth printer with android
I have a bluetooth Handheld printer that I am able to communicate to using a SPP connection from my Mac(using Coolterm).
When I'm trying to do the same from Android (using platform 7) I am running ...
26
votes
13answers
1k views
What's the easiest, most practical way to toggle several lightbulbs with a PC?
This question is mainly electronics related, but it also has a programming aspect.
Some background on the problem
We have a traffic light on a wall in our office. When people come in to the office, ...
19
votes
4answers
21k views
Virtual Serial Port for Linux
I need to test a serial port application on Linux, however, my test machine only has one serial port.
Is there a way to add a virtual serial port to Linux and test my application by emulating a ...
16
votes
10answers
5k views
Simple serial point-to-point communication protocol
I need a simple communication protocol between two devices (a PC and a microcontroller). The PC must send some commands and parameters to the micro. The micro must transmit an array of bytes (data ...
12
votes
4answers
15k views
Qt and serial port programming
Is there any serial port facilities in Qt ?
If not, which crossplatform (desirable) libraries (for working with serial port and, maybe, with other I/O ports), do you recommend ?
12
votes
4answers
8k views
sysinternals portmon: error 2
I'm getting the error message: "error 2" when I try to connect to local ports Computer -> Connect local using portmon.exe v. 3.02
I run the tool as an administrator (if not, I get error 6).
By the ...
12
votes
4answers
6k views
Serial port communication: polling serial port vs using serial port DataReceived event
I am just reviewing some code I wrote to communicate with the serial port in C# on CF2.0.
I am not using DataReceived event since it's not reliable. MSDN states that:
The DataReceived event is not
...
10
votes
1answer
370 views
open() function hangs (never returns) when trying to open serial port in Mac OS X
I've run into a problem where the open function never returns when I try to open a serial port. It doesn't happen all the time, and the problem disappears for a while if I unplug my USB to serial ...
10
votes
4answers
5k views
How to correctly use .NET2.0 serial port .BaseStream for async operation
I am attempting to use the .BaseStream property of the .NET2.0 SerialPort to do asynchronous reads and writes (BeginWrite/EndWrite, BeginRead/EndRead).
I am having some success in this, but after a ...
9
votes
1answer
260 views
Android serial port via audio jack
I want to get data using serial port via audio jack.
I don't have any idea about this. But I find a app audioserial can send data to.
So, I think it should be get data like audioserial. Is there same ...
9
votes
2answers
257 views
Detect Arduino port in Python
I am using an Arduino for sensing using Python 2.7 on Windows XP, but the non-static nature of the USB-to-serial port translation is giving me a headache. With a physical serial port there is no issue ...
9
votes
2answers
476 views
Is it necessary to synchronize .NET SerialPort writes/reads?
In my application I use the .NET SerialPort class for reading and writing data. The reading is done using the DataReceived event, I assume internally on a ThreadPool thread. The writing is done by the ...
9
votes
8answers
666 views
Need a good serial port logging tool
I'm working on an embedded system and it uses one serial port for all it's logging purposes.
Is there a tool out there that allows you to filter lines into different windows (or remove them ...
9
votes
2answers
6k views
What is the difference between DTR/DSR and RTS/CTS flow control?
What's the difference between DTR/DSR and RTS/CTS hardware flow control? When is each one used? Why do we need more than one kind of hardware flow control? :)
9
votes
4answers
2k views
Getting Epson receipt printer to print from Arduino
This is a bit of an odd/specific question, but I'm having no luck, so maybe someone can help. I'm trying to build a microprinter using an Arduino and an Epson TM-T88II receipt/POS printer. The printer ...
9
votes
2answers
10k views
How do I determine which process is using a serial port?
The company I work for makes hardware that communicates to the computer though a serial port. Third party companies write software that communicates with our hardware.
There are times when I need to ...
8
votes
1answer
271 views
How to transfer data to a serial port?
I know that in J2ME CommConnection is the connection to use when working with serial port. I know there are the openInputStream and openOutputStream methods , but in fact I don't know how to transfer ...
8
votes
5answers
3k views
How to open a serial port by friendly name?
friendly name = the name that appears in "Device Manager" under "Ports (COM & LPT).
EDIT: two solutions provided below. One with WMI and another with SetupAPI.
8
votes
5answers
391 views
programmatically controlling power sockets in the UK
It's very simple.
I want to plug a lamp into the UK mains supply.
I want to be able to power it on and off from software - say from serial port commands, or by running a command-line or something I ...
8
votes
1answer
1k views
RS232 serial snoop tools for protocol development / debugging
I develop a wide range of relatively simple firmware devices. Every one of these ends up talking to the PC (or another device) via the RS232 port in one way or another, so I spend a lot of time ...
8
votes
5answers
21k views
How do I use dataReceived event of the SerialPort Port Object in C#?
I am attempting to create a small application to collect data received from an external sensor attached to COM10. I have successfully created a small C# console object and application that opens the ...
8
votes
3answers
5k views
How do I force a serial port write method to wait for the line to clear before sending its data?
Here's some background on what I'm trying to do:
Open a serial port from a mobile device to a Bluetooth printer.
Send an EPL/2 form to the Bluetooth printer, so that it understands how to treat the ...
7
votes
1answer
132 views
Reading raw bytes from a serial port
I'm trying to read raw bytes from a serial port sent by a IEC 870-5-101 win32 protocol simulator with a program written in C running on Linux 32bit.
It's working fine for byte values like 0x00 - ...
7
votes
1answer
350 views
serial communication, read the 9th bit
I have an application wich connects with an external protocol
using serial communication.
I need know if the wakeup bit is set on each packet it sends to me (the 9 bit), and as communication rates ...
7
votes
2answers
390 views
Comprehesive information on serial ports and programming?
What are some comprehesive sources on serial programming?
Ideally they would cover things like:
history of devices
current and future uses
how serial devices work
protocols
and, of course, how to ...
7
votes
3answers
22k views
Reading from the serial port in C#
I have tried using Readline() and data gets dropped, I tried using Read() but I am not sure how to have an error proof method of doing it, since I may get several packets one after another and I have ...
7
votes
5answers
2k views
How to capture a serial port that disappears because the usb cable gets unplugged
I have a c# winforms program and it opens up a serial port. The problem happens when the end user unplugs the usb cable and then the device disappears. After this the program will crash and want to ...
6
votes
3answers
225 views
Sleep() is a bad design, but appears to be my only option
I'm writing an IO class to upload/download files to a controller over RS-232 serial. Unfortunately, I cannot send a whole file all at once, I have to break it into packets and send it a little bit at ...
6
votes
2answers
177 views
PySerial not talking to Arduino
Python version: 2.6.6
PySerial version: 2.5
Arduino board: Duemilanove 328
I have written some code to simulate some hardware I'm working with and uploaded it to the Arduino board. This code works. ...
6
votes
2answers
214 views
How can I make a custom USB device show up in Windows as a COM Port?
I have developed a USB device that communicates with linux over a simple but proprietary interface and some custom Linux drivers. My goal is to port this to Windows without writing windows drivers. ...
6
votes
2answers
98 views
Processing text coming off a serial line in C#
I've got an embedded device running Linux that I can communicate with via RS232. I'm attempting to programmatically control it from within an existing .NET application, so I've been fooling around ...
6
votes
2answers
208 views
Serial port or USB port using D?
I'm new using the D programming language and I was wondering if D can make use of the Serial port or usb port?
6
votes
3answers
238 views
Making the best of a bad “checksum” algorithm
I'm working on an existing driver that controls an 8-bit MCU over a serial port. There are many different flavors of firmware for the MCU but they all share a common method of trying to ensure link ...
6
votes
1answer
459 views
High delay in RS232 communication on a PXA270
I'm experiencing a long delay (1.5ms - 9.5ms) in a RS232 communication on a PXA270 RISC PC/104. I want to minimize the long delay but I'm a beginner with embedded devices and C++ so I think I'm ...
6
votes
2answers
479 views
How to change serial port speed on the fly with boost::asio (or how to find out if the hardware buffer is empty)?
I'm having a peculiar problem with boost::asio and a boost::asio::serial_port device. The code is finally working pretty well with asynchronous reads and stuff, but I can't figure out how to change ...
6
votes
3answers
2k views
C: cross-platform RS232 serial library?
I am looking for an open source cross-platform library for working with the serial port in C, something along the lines of the awesome pyserial library (Unfortunately I have to use C for this ...
6
votes
6answers
663 views
Is 0x9B (155decimal) a special control character? Why is it missing from ascii tables?
I'm working on an embedded system, and i'm having dramas getting it to send a certain chunk of data across the serial port. I narrowed it down and found that if a 0x9B is present in the message, it ...
6
votes
2answers
903 views
Faking an RS232 Serial Port
I'm developing a project that has a number of hardware sensors connecting to the deployment machine through RS232 serial ports.
But ... I'm developing on a machine without an physical RS232 serial ...
6
votes
3answers
3k views
How to get caller ID in C#?
Hello I wanna use 56K modem for getting telephone number of who calls the home phone, is there a way to achieve this with C# ?
6
votes
9answers
19k views
How to do robust SerialPort programming with .NET / C#?
I'm writing a Windows Service for communication with a Serial Mag-stripe reader and a relay board (access control system).
I run into problems where the code stops working (i get IOExceptions) after ...
6
votes
6answers
8k views
Programmatically talking to a Serial Port in OS X or Linux
I have a Prolite LED sign that I like to set up to show scrolling search queries from a apache logs and other fun statistics. The problem is, my G5 does not have a serial port, so I have to use a usb ...
5
votes
1answer
71 views
High-precision system time in python
Is there any way of obtaining high-precision system time in python?
I have a little application to work with virtual COM-port. I want to measure the time interval between the sending of the message ...
5
votes
2answers
134 views
Are there constraints on a serial port with more than 6 devices connected?
I have a project that uses Rocketport Infinity 16 ports to receive data from 6 different anemometers (wind speed measurement devices) (RS422, 50Hz, 38.4k baud, 47 bytes per record). When I use 32Hz ...
5
votes
4answers
143 views
Can't get C to write and read serial port
This is my first C program. hello world! I'm sure this is no problem for high school programmers these days, but they didn't have programming when I was in high school. :)
I want to write to a serial ...
5
votes
5answers
558 views
c# serialport responding to EventHandler, but not ReadExisting or ReadLine?
i have a program that's reading from serial port in c#. i need to quickly write to a port, read from it, then close it. i cannot leave it open. i understand that serial ports read and write slowly, ...
5
votes
2answers
309 views
How to change baud rate without closing the connection?
I want to connect to a device that connected to serial port (COM4) with initial baud rate 300, the device can change its baud rate to 9600 with a command, my Java code send this command to device and ...
5
votes
1answer
9k views
Bluetooth SPP between Android and other device, UUID and PIN questions
I'm trying to implement an Android application to receive data from a medical device but I can't get through the discovery process and get the phone and the device paired or connected to each other.
...
5
votes
2answers
1k views
Hyper-V: Connecting VMs through named pipe loses data
We are trying to connect two Hyper-V VMs through a serial port. Hyper-V exposes the serial port as a named pipe to the host system, and implements the server end of the named pipe. Consequentially, to ...
5
votes
7answers
13k views
using serial port RS-232 in android?
I want to send signals via serial port using the JavaComm API classes on android device. and here is how I imagen it:
1- android device would be: Archos 3.2 which has android 2.2 and USB host mode.
...
5
votes
1answer
547 views
Getting my serial port to talk to my Adobe Air app
I have run into this issue where I needed a piece of simple medical equipment to output a string of comma separated numbers to my Adobe Air app. I'm just thrilled to be talking to something besides a ...