0

我已经编写了一些 Linux 程序来通信我的设备。我的 Windows 程序“相同”(“相同”,因为它的逻辑相同)。我使用 8N2 数据帧格式 @ 9600 bps,既没有软件 (XOn/XOff) 也没有硬件 (RTS/CTS) 流控制。我不使用 RS-232 9 针 D-sub 的 DTR、DCD、RI、DSR 引脚。我只使用 RX 和 TX 引脚与我的设备通信。在 Linux 中,我有这部分代码:

 struct termios PortOpts, result;
 int fd; /* File descriptor for the port */

/* Configure Port */
 tcgetattr(fd, &PortOpts);
 // BaudRate - 9600
 cfsetispeed(&PortOpts, B9600);
 cfsetospeed(&PortOpts, B9600);
 // enable reciever and set local mode, frame format - 8N2, no H/W flow control
 PortOpts.c_cflag &= (~(CLOCAL | CREAD | CSIZE | CSTOPB));
 PortOpts.c_cflag |= ((CLOCAL | CREAD | CS8 | CSTOPB) & (~PARENB));
 PortOpts.c_cflag &= (~CRTSCTS);
// PortOpts.c_cflag &= ~PARENB
// PortOpts.c_cflag |= CSTOPB
// PortOpts.c_cflag &= ~CSIZE;
// PortOpts.c_cflag |= CS8;
 // no parity check, no software flow control on input
 PortOpts.c_iflag |= IGNPAR;
 PortOpts.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXOFF | IXANY | INPCK);
 // raw data input mode
 PortOpts.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
 // raw data output
 PortOpts.c_oflag &= ~OPOST;
 // setting timeouts
 PortOpts.c_cc[VMIN] = 1; // minimum number of chars to read in noncanonical (raw mode)
 PortOpts.c_cc[VTIME] = 5; // time in deciseconds to wait for data in noncanonical mode (raw mode)

 if (tcsetattr(fd, TCSANOW, &PortOpts) ==  0) {
    tcgetattr(fd, &result);
    if ( (result.c_cflag != PortOpts.c_cflag) ||
         (result.c_oflag != PortOpts.c_oflag) ||
         (result.c_iflag != PortOpts.c_iflag) ||
         (result.c_cc[VMIN] != PortOpts.c_cc[VMIN]) ||
         (result.c_cc[VTIME] != PortOpts.c_cc[VTIME]) ) {
        perror("While configuring port1");
        close(fd);
        return 1;
    }
 } else {
    perror("While configuring port2");
    close(fd);
    return 1;
 };

文件描述符“fd”用于“/dev/ttyS0”设备。我收到这条消息:配置端口 2 时:输入/输出错误 我有一台笔记本电脑,但除了 USB 之外我没有任何串行端口。这是一个原因吗?我以“root”身份运行程序。

对不起我的英语不好。

4

1 回答 1

1

你能在程序上运行 strace 吗?这将更详细地说明 IO 错误发生的位置。

要记住的一件事 - errno 不会被重置,因此实际错误可能来自 perror 之前的任何系统调用。

于 2013-08-26T20:49:09.440 回答