在c ++

时间:2016-03-22 21:21:13

标签: c++ serial-port

我对串口参数的设置有点问题。在我配置的程序c ++中: - 波特率 - > 38400 - 数据位 - > 8 - 奇偶校验 - >没有 - 停止位 - > 1 - 握手 - >没有。 但是从串口读取的缓冲区是脏的,它包含更多的消息。我想1个缓冲区1个消息。你能帮助我吗?我等着回答。 这是代码:

speed=B38400;
    cfsetospeed (&tty, speed);
    cfsetispeed (&tty, speed);

    tty.c_cflag = (tty.c_cflag & ~CSIZE) | CS8;     // 8-bit chars
    // disable IGNBRK for mismatched speed tests; otherwise receive break
    // as \000 chars
    tty.c_iflag &= ~IGNBRK;         // disable break processing
    tty.c_lflag = 0;                // no signaling chars, no echo,
                                    // no canonical processing
    tty.c_oflag = 0;                // no remapping, no delays
    tty.c_cc[VMIN]  = 0;            // read doesn't block
    tty.c_cc[VTIME] = 5;            // 0.5 seconds read timeout

    tty.c_iflag &= ~(IXON | IXOFF | IXANY); // shut off xon/xoff ctrl

    tty.c_cflag |= (CLOCAL | CREAD);// ignore modem controls,
                                    // enable reading
    tty.c_cflag &= ~(PARENB | PARODD);      // shut off parity
    tty.c_cflag |= parity;
    tty.c_cflag &= ~CSTOPB;
    tty.c_cflag &= ~CRTSCTS;

1 个答案:

答案 0 :(得分:-1)

我使用了覆盆子,一个debian平台