串口操作封装类:
包括:
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); //打开串口
2019-12-21 19:53:09
2KB
串口操作
1