将C ++串行端口奇偶校验更改代码从Linux移植到Windows

时间:2015-03-10 14:07:47

标签: c++ windows serial-port port parity

我在编程方面并不是很有经验,但我正在尝试将C ++代码从Linux移植到Windows。它是一个写入串口并读取答案的函数,然后对其进行解析。我可以把它放在一起,但我不确定如何将以下内容从Linux移植到Windows:

void serialPort::mark() {
    options.c_cflag |= PARENB | CMSPAR | PARODD;
  tcsetattr(fd, TCSAFLUSH, &options);
}

void serialPort::space() {
    options.c_cflag |= PARENB | CMSPAR;
    options.c_cflag &= ~PARODD;
  tcsetattr(fd, TCSANOW, &options);

这些函数用于在写入串行端口时在标记和空间奇偶校验之间切换 - 命令的第一个字节必须用标记奇偶校验写入,其余字节用空格奇偶校验,如下所示:

char sum=checksum(length,command);
char* bufptr;
int nbytes=0;
mark();
write(fd,&length,1); //write first byte with mark parity
usleep(2000);
read(fd,buffer,255);
space(); //write remaining bytes with space parity
for(int i=0; i<length;i++){
    write(fd,&command[i],1);
    usleep(2000);
    read(fd,buffer,1);
}
write(fd,&sum,1);

但我坚持这个。我甚至都不知道它是否可以在Windows中使用。有人请你有个主意吗?非常感谢你。

1 个答案:

答案 0 :(得分:0)

Windows上的等效操作是使用传递的DCB结构的Parity成员中的相应标志调用SetCommState。它确实支持标记奇偶校验和空间奇偶校验。