How do I configure and communicate with a serial port?

13,163

Solution 1

Build a time machine and go back to 1987? Ho ho.

Ok, no more snarky comments.

How do I figure out what the configuration settings (e.g. baud rate) should be...

Read the datasheet? Ok, ok. Seriously, last one. If you don't know the baud rate of the device you are trying to communicate with, you have two choices. Start guessing, or possibly bust out an o-scope. If you need a good starting point, let me suggest 9600-8-N-1. My suspicion is you can get there with brute force relatively quickly. There's a third option of having an old-school ninja who can tell just by the LOOK of the garbled characters at some standard baud rate what actual baud rate is. An impressive party trick to be sure.

Hopefully though you have access to this information. In unix/linux, you can get ahold of minicom to play with the serial port directly. This should make it fairly quick to get the configuration figured out.

one of the major Unix shells

In Unix the serial port(s) is/are file-mapped into the /dev/ subdir. ttyS0, for example. If you setup the correct baud rate and whatnot using minicom, you can even cat stuff to that file to send stuff out there.

On to the meat of the question, you can access it programmatically through the POSIX headers. termios.h is the big one.

See: http://www.easysw.com/~mike/serial/serial.html#3_1 (NOT AVAILABLE ANYMORE)

but I also have some interest in serial programming using Windows/Hyperterminal.

Hyperterminal and minicom are basically the same program. As for how Windows let's you get access to the serial port, I'll leave that question for someone else. I haven't done that in Windows since the Win95 days.

Solution 2

If you want to code in Java I really recommend SerialIOs SerialPort. It is very easy to use and saves you days of work. I've never found an open source library as good as SerialIO, REALLY!

My advice: do not use Sun's serial IO framework! It is from 1998 and full of bugs. You can use rxtx but serialio is better!

Solution 3

For C/C++ on Windows you have (at least) two choices:

  1. Use the SerialPort class provided by .NET.
  2. Use the Win32 API. There is an extensive MSDN article dating back to 1995, and many free libraries and examples on the web to get you started.

The .NET option will be much easier.

Solution 4

If it needs to be cross platfrom, I would suggest looking at Boost Asio.

Solution 5

Awhile back I wrote a decent sized application to route connections from a farm of modems through to a TCP/IP network address.

Initially I looked for an unencumbered (free) Serial IO library. I tried Sun's, IBM's and RxTx. They were fine for developing the application, and in initial testing, but in production they each proved unstable.

Finally I paid for SerialIO's SerialPort. Converting over was literally an exercise in changing imports, and the library has been absolutely rock solid - I cannot recommend it enough. My application has been running in the field 24/7 for a couple of years now, with not a single problem encountered by multiple customers.

If you start development using SerialPort, they have a better API and I would use it.

If you need cross platform support, Java with SerialPort was the best choice I could find.

Lastly, their licensing is pretty darn reasonable as long as you are not preinstalling software on the equipment for your customer(s).

Share:
13,163
Greg Case
Author by

Greg Case

Software Engineer in New England. These days I write C++ for a living.

Updated on June 30, 2022

Comments

  • Greg Case
    Greg Case almost 2 years

    I need to send and receive data over serial connections (RS-232 and RS-422).

    How do I set up and communicate with such a connection? How do I figure out what the configuration settings (e.g. baud rate) should be and how do I set them?

    In particular I am looking to do this in Java, C/C++, or one of the major Unix shells but I also have some interest in serial programming using Windows/Hyperterminal.

  • Gili
    Gili over 15 years
    When did you last use RxTx and SerialPort? I'm curious whether RxTx has improved.
  • Lawrence Dol
    Lawrence Dol over 15 years
    @Gili: It was a number of years ago now, for RxTx - I never returned to it after purchasing SerialPort, since we never have had problems with SerialPort and there are no royalties, so no motivation to invest time in RxTx.
  • Lawrence Dol
    Lawrence Dol over 15 years
    @Gili: SerialPort is in current production use by our customers.
  • Jason S
    Jason S over 15 years
    what's their max baudrate for communicating with USB converters? I looked on their website, it says 230400 but I may have misread something. (230Kbaud's not enough for my application)
  • Lawrence Dol
    Lawrence Dol over 15 years
    IIRC, the max baud was effectively limited only by the H/W - I wrote my config to allow up to 1.3Mb, but I was targeting modems over RS-232 so 115K was the max that I needed, and likely the max that I ever will.