资源简介

自修改的CSerialPort类,在VS2015下调试正常工作,支持unicode字符集,支持字符串和二进制(16进制)收发,串口反复打开关闭正常,支持查询计算机内可用串口

资源截图

代码片段和文件信息

/*
**    FILENAME            CSerialPort.cpp
**
**    PURPOSE                This class can read write and watch one serial port.
**                        It sends messages to its owner when something happends on the port
**                        The class creates a thread for reading and writing so the main
**                        program is not blocked.
**
**    CREATION DATE        15-09-1997
**    LAST MODIFICATION    12-11-1997
**
**    AUTHOR                Remon Spekreijse
**
**
*/

#include “stdafx.h“
#include “SerialPort.h“

#include 
 
//
// Constructor
//
CSerialPort::CSerialPort()
{
    m_hComm = NULL;

    // initialize overlapped structure members to zero
    m_ov.Offset = 0;
    m_ov.OffsetHigh = 0;

    // create events
    m_

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      26907  2015-12-07 22:50  SerialPort.cpp

     文件       5458  2015-11-23 22:17  SerialPort.h

----------- ---------  ---------- -----  ----

                32365                    2


评论

共有 条评论