VC++ 与Arduino串口通讯

实验动机

本来在Python中使用pyserial package快乐写串口,但是由于系统迁移需要改为C++,于是开始了C++菜鸟痛苦写串口过程。实现目标为PC作为上位机,Arduino作为下位机控制电机驱动使步进电机移动。全项目包括串口通讯模块Serial,电机控制模块Motor,和调用两个模块的main.cpp。本文具体记录串口通讯的调用,以及发送长字符串如何debug。 

C++串口通讯代码

代码参考别的博文,做了面向对象的分离。系统为Windows,编译环境为VS2019。串口函数主要用到了windows.h中包含的定义。关于这个库的介绍可以看这里(1条消息) C++ windows.h详解_张耘嘉的博客-CSDN博客_c++ windows.h

话不多说,上代码。

Serial.h

#ifndef SERIALCLASS_H_INCLUDED
#define SERIALCLASS_H_INCLUDED

#define ARDUINO_WAIT_TIME 200
#include <windows.h>
#include <stdlib.h>
#include <conio.h>  


class Serial
{
private:
	HANDLE hSerial; //Serial comm handler
	bool connected; //Connection status
	COMSTAT status; //Get various information about the connection
	DWORD errors; //Keep track of last error

public:
	//Initialize Serial communication with the given COM port
	Serial();
	Serial(const char *portName);
	//Close the connection
	~Serial();
	//Read data in a buffer, if nbChar is greater than the
	//maximum number of
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值