资源简介
自修改的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
- 上一篇:8255A+8253+8259控制步进电机
- 下一篇:电子商城前端代码
相关资源
- PCL+VS2015实现点云可视化
- 多国语言开发必备工具(点阵字库+多
- 经典三方串口类SerialPort
- Win7上VS2015编译和使用Thrift
- 如何将一个ansi的文本文件转为unicod
- 改变“非Unicode程序的语言”时所需要
- VS2015编译程序时报错缺失的msvcp140d.
- nasm-2.14rc15 自动安装包(vs2015适用)
- 各国文字Unicode编码范围
- CSerialPortV3.0.2串口类最新修正版2018-
-
emoji.xm
l 有478个emoji的SBUnicode编码, - CSerialPort类,支持unicode编码
- vs2015使用sublime-monokai主题
- utf-8 unicode编码表
- VS2015 Release Library
- leveldb vs2015_build
评论
共有 条评论