• 大小: 12KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: 其他
  • 标签: SerialPort  

资源简介

最新SerialPort 解决很多BUG 值得下载。

资源截图

代码片段和文件信息

/*
** 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
**
**  2007-12-25 mrlong    https://code.google.com/p/mycom/
**  2011-11-06 liquanhai http://blog.csdn.net/liquanhai/article/details/6941574
**  2013-12-04 viruscamp
**  2014-12-18 liquanhai
*/

#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;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-12-18 09:52  CSerialPort-master\
     文件         483  2014-12-18 09:52  CSerialPort-master\.gitattributes
     文件        2643  2014-12-18 09:52  CSerialPort-master\.gitignore
     文件        1103  2014-12-18 09:52  CSerialPort-master\README.md
     文件       20933  2014-12-18 09:52  CSerialPort-master\SerialPort.cpp
     文件        4929  2014-12-18 09:52  CSerialPort-master\SerialPort.h

评论

共有 条评论