文件名称:封装的串口类(写串口,读串,设置超时,C++)
文件大小:2KB
文件格式:RAR
更新时间:2012-07-27 03:44:45
串口操作
串口操作封装类: 包括: BOOL WriteComm(char* lpBuffer, int nLen); // 写串口 BOOL ReadComm(char* lpBuff, int nLen); // 读串口函数 BOOL SetTimeOuts(COMMTIMEOUTS stTimeOuts); // 设置超时时间 BOOL SetComm(int nBaudRate/*波特率*/,int nParity/*奇偶校验*/,int nByteSize, int nStopBits); // 设置串口 void CloseComm(); // 关闭串口 BOOL OpenComm(int nComm); //打开串口
【文件预览】:
Comm.h
Comm.cpp