windows读写串口基本操作,以下用的vs2015 MFC编译:
serialport.h
#ifndef _SERIAL_20190304_H
#define _SERIAL_20190304_H
#include
#include
#include
class CSerialPort
{
public:
CSerialPort();
~CSerialPort();
public:
void setConfig(const std::string& portNum, DWORD baudRate, BYTE byteSize, BYTE parityBit, BYTE stopBit);
bool openComm(); // 打开串口
void closeComm(); // 关闭串口
bool writeToComm(char* pdata); // 发送数据
bool readFromComm(char buffer[], DWORD dwLength); // 读取数据
public:
2022-09-27 13:00:47
6KB
Serial
1