Click here to Skip to main content
15,868,141 members
Articles / Desktop Programming / MFC

Creating a Serial communication on Win32

Rate me:
Please Sign up or sign in to vote.
4.57/5 (59 votes)
20 Oct 2002CPOL5 min read 932.4K   52.9K   218   103
The purpose of this article is to describe how to interface to serial port on Win32.

Sample Image

Introduction

The purpose of this article is to describe how to interface to serial port on Win32. The serial port can be implemented by several techniques such as ActiveX, access I/O and file operation. This article explains the use of serial port on Win32 platform by file operation technique. The programmer can use kernel32.lib library that is provided with the Microsoft Visual C++ Version 6.0. In Microsoft Windows (2000, Me, XP and 95/98), serial port can be treated as a file. Therefore it's possible to open a serial port by using Windows file-creating function.

This article explains not only about serial port communication but also how to implement multi-tasking that can apply with our project "serial port" application. The reason why the software (serial communication) will be implemented with multi-tasking method is that the serial communication application has to handle work with more than one task at the same time. For example data-reading task, data-sending task, GUI task etc.

These topics describe the basic operation of interfacing a serial port on Win32:

Initial/Open serial port communication.

Receive/Send data

Design approach

Initial/Open serial port

The first step in opening a serial port is initiation or setting a serial port's configuration. The purpose of this is to create the serial port agent. All throughout the article we are going to use a file handle as serial port agent.

Creating a port handle

The serial port's handle is a handle that can be used to access the object of serial port. The function that is used to create the serial port handle is the CreateFile function. The following code shows the function that is used to create a handle:

C++
handlePort_ = CreateFile(portName,  // Specify port device: default "COM1"
GENERIC_READ | GENERIC_WRITE,       // Specify mode that open device.
0,                                  // the devide isn't shared.
NULL,                               // the object gets a default security.
OPEN_EXISTING,                      // Specify which action to take on file. 
0,                                  // default.
NULL);                              // default.

As figure 2 shows, portName = "COM1": the portName is a variable that is declared by const char*. It is used to specify port name that wants to create a serial port handle.

Image 2

 

Figure 2: CreateFile function

 

Restoring a configuration

The restoration of serial port configuration is getting current configuration at control device. The configuration of serial port includes parameters that are used for setting a serial communications device.

The GetCommState function is used to get the current device-control and then fills to a device-control block (a DBC structure) with the current control settings for a specified communications device. The following code shows the function that is used to get the current control device:

C++
// Get current configuration of serial communication port.
if (GetCommState(handlePort_,&config_) == 0)
{
   AfxMessageBox("Get configuration port has problem.");
   return FALSE;
}

Modifying a configuration

When you already have serial port configuration in the DBC format, you have to modify parameters a bit. Following code shows the parameters modified:

C++
// Assign user parameter.
config_.BaudRate = dcb.BaudRate;  // Specify buad rate of communicaiton.
config_.StopBits = dcb.StopBits;  // Specify stopbit of communication.
config_.Parity = dcb.Parity;      // Specify parity of communication.
config_.ByteSize = dcb.ByteSize;  // Specify  byte of size of communication.
  • DWORD BaudRate:

    Current baud rate (default = 9600)

  • BYTE StopBits:

    0,1,2 = 1, 1.5, 2 (default = 0)

  • BYTE Parity:

    0-4= no, odd, even, mark, space (default = 0)

  • BYTE ByteSize:

    Number of bits/byte, 4-8 (default = 8)

Note: Recommend that programmers use default value for typical communication. As shown in figure 3, Watch Dialog Box shows the default values that are used for typical communication.

Image 3

 

Figure 3: Serial port configuration

 

Storing a configuration

The next step is the storage of new configuration that is modified already into device control. Call SetCommState API function to store the configuration. The SetCommState function configures a communications device according to the specifications in a device-control block (a DBC structure). The function reinitializes all hardware and control settings, but it does not empty output or input queues. Following code shows storage of a new configuration:

C++
if (SetCommState(handlePort_,&config_) == 0)
{
  AfxMessageBox("Set configuration port has problem.");
  return FALSE;
}

Setting a Time-Out communication

The final step in serial port opening is setting communication Time-out by using the COMMTIMEOUTS data-structure and calling SetCommTimeouts function. The code below shows setting time-out of communication:

C++
// instance an object of COMMTIMEOUTS.
COMMTIMEOUTS comTimeOut;                   
// Specify time-out between charactor for receiving.
comTimeOut.ReadIntervalTimeout = 3;
// Specify value that is multiplied 
// by the requested number of bytes to be read. 
comTimeOut.ReadTotalTimeoutMultiplier = 3;
// Specify value is added to the product of the 
// ReadTotalTimeoutMultiplier member
comTimeOut.ReadTotalTimeoutConstant = 2;
// Specify value that is multiplied 
// by the requested number of bytes to be sent. 
comTimeOut.WriteTotalTimeoutMultiplier = 3;
// Specify value is added to the product of the 
// WriteTotalTimeoutMultiplier member
comTimeOut.WriteTotalTimeoutConstant = 2;
// set the time-out parameter into device control.
SetCommTimeouts(handlePort_,&comTimeOut);
ReadIntervalTimeout

Specifies the maximum time, in milliseconds, allowed to elapse between the arrival of two characters on the communications line. During a ReadFile operation, the time period begins when the first character is received. If the interval between the arrival of any two characters exceeds this amount, the ReadFile operation is completed and any buffered data is returned. A value of zero indicates that interval time-outs are not used.

A value of MAXDWORD, combined with zero values for both the ReadTotalTimeoutConstant and ReadTotalTimeoutMultiplier members, specifies that the read operation is to return immediately with the characters that have already been received, even if no characters have been received.

ReadTotalTimeoutMultiplier

Specifies the multiplier, in milliseconds, used to calculate the total time-out period for read operations. For each read operation, this value is multiplied by the requested number of bytes to be read.

ReadTotalTimeoutConstant

Specifies the constant, in milliseconds, used to calculate the total time-out period for read operations. For each read operation, this value is added to the product of the ReadTotalTimeoutMultiplier member and the requested number of bytes.

A value of zero for both the ReadTotalTimeoutMultiplier and ReadTotalTimeoutConstant members indicates that total time-outs are not used for read operations.

WriteTotalTimeoutMultiplier

Specifies the multiplier, in milliseconds, used to calculate the total time-out period for write operations. For each write operation, this value is multiplied by the number of bytes to be written.

WriteTotalTimeoutConstant

Specifies the constant, in milliseconds, used to calculate the total time-out period for write operations. For each write operation, this value is added to the product of the WriteTotalTimeoutMultiplier member and the number of bytes to be written.

A value of zero for both the WriteTotalTimeoutMultiplier and WriteTotalTimeoutConstant members indicates that total time-outs are not used for write operations.

Note: After the user has set the time-out of communication without any error, the serial port has opened already.

Sending data

Most of data transmission of serial port is done as writing a file. Programmer can apply file operation functions for sending data to serial port. The WriteFile function is a function used to send data in serial port communication.

C++
if (WriteFile(handlePort_,   // handle to file to write to
    outputData,              // pointer to data to write to file
    sizeBuffer,              // number of bytes to write
    &length,NULL) == 0)      // pointer to number of bytes written
{
    AfxMessageBox("Reading of serial communication has problem.");
    return FALSE;
}

Note: If the function succeeds, the return value is nonzero.

Receiving data

Most of data reception of serial communication is done as reading a file. Programmer can apply file operation functions for receiving data from serial port. The ReadFile function is the function that handles reading data in serial port communication.

C++
if (ReadFile(handlePort_,  // handle of file to read
    inputData,               // handle of file to read
    sizeBuffer,              // number of bytes to read
    &length,                 // pointer to number of bytes read
    NULL) == 0)              // pointer to structure for data
{
    AfxMessageBox("Reading of serial communication has problem.");
    return FALSE;
}

Note: If the function succeeds, the return value is nonzero.

Closing a serial port

The serial port closing calls the CloseHandle API function to close handle of device control.

C++
if(CloseHandle(handlePort_) == 0)    // Call this function to close port.
{
    AfxMessageBox("Port Closeing isn't successed.");
    return FALSE;
}

Note: If the function succeeds, the return value is nonzero.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
I am living in Thailand, I am working as a Software Engineer at a transportation Compay, In my spare time I like to play ping pong.

My programming experience includes C/C++, Java, C#, Assembler(Intel/Motolora), MFC, ATL, OpenGL, a bit for HTML.

Comments and Discussions

 
AnswerRe: i cant build it Pin
seobi495-May-08 16:10
seobi495-May-08 16:10 
GeneralRe: i cant build it Pin
xSIZARx7-Feb-11 1:29
xSIZARx7-Feb-11 1:29 
Generalmaybe bug! Pin
Member 106837728-Jun-04 17:57
Member 106837728-Jun-04 17:57 
GeneralRe: maybe bug! Pin
Bincker5-Sep-08 16:46
Bincker5-Sep-08 16:46 
GeneralRe: maybe bug! Pin
Luke Hu4-May-09 21:05
Luke Hu4-May-09 21:05 
GeneralI have a suggestion Pin
Stanimir28-Jun-04 5:20
Stanimir28-Jun-04 5:20 
Generalbluetooh serial com Pin
alucas12-May-04 0:49
alucas12-May-04 0:49 
GeneralThis Program on MASM32 Pin
xcentro1-May-04 5:56
xcentro1-May-04 5:56 
QuestionCorrupted file? Pin
Member 81268420-Apr-04 8:54
Member 81268420-Apr-04 8:54 
AnswerRe: Corrupted file? Pin
Raul Sobon23-May-04 21:01
Raul Sobon23-May-04 21:01 
GeneralRe: Corrupted file? Pin
ptb0773419-Sep-07 14:00
ptb0773419-Sep-07 14:00 
GeneralDAU-9P Pin
thp251026-Mar-04 17:21
thp251026-Mar-04 17:21 
Generalproblem in SerialCtl ::read_scc,buffer overflow Pin
checko25-Mar-04 16:34
checko25-Mar-04 16:34 
GeneralI2C communication Pin
yyyychan4-Mar-04 21:01
yyyychan4-Mar-04 21:01 
GeneralRe: I2C communication Pin
checko25-Mar-04 16:36
checko25-Mar-04 16:36 
GeneralRe: I2C communication Pin
Member 46070387-Jun-04 8:42
Member 46070387-Jun-04 8:42 
GeneralAbout CTS signal ... Pin
Lachezar5-Feb-04 4:45
Lachezar5-Feb-04 4:45 
GeneralRe: About CTS signal ... Pin
_const_28-May-04 0:14
_const_28-May-04 0:14 
GeneralError in compile release mode Pin
Piccinano7-Dec-03 9:15
Piccinano7-Dec-03 9:15 
GeneralRe: Error in compile release mode Pin
checko25-Mar-04 16:43
checko25-Mar-04 16:43 
GeneralRe: Error in compile release mode Pin
Venkat Eswaran5-Mar-05 22:16
Venkat Eswaran5-Mar-05 22:16 
GeneralSolution Required Pin
Josepj17-Nov-03 1:21
Josepj17-Nov-03 1:21 
GeneralRe: Solution Required Pin
Anonymous8-Jan-04 19:30
Anonymous8-Jan-04 19:30 
GeneralProblem... Pin
crystalyd17-Aug-03 23:49
crystalyd17-Aug-03 23:49 
Generalonly transmit a bit data Pin
sawhs5-Aug-03 4:59
sawhs5-Aug-03 4:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.