串行设备:读取8N1有效,但写入单个字节失败

时间:2009-10-13 07:33:17

标签: c linux serial-port

在我的程序中,我从串行设备(Linux,8N1)读取没有任何问题。但是在我要写出单个字节的情况下,我在接口上什么都没有。我假设我的串行输出设置是错误的。但是如何设置c_oflag ......

的方法并不多

我的代码:

#define TTYDEVICE "/dev/ttyS0"
#define BAUDRATE B9600

int openSerialDevice(const char* devTTY, struct termios oldTio) {
//----< Open serial device >----------------------------------
int fileDescriptor;
// fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY | O_NDELAY);
fileDescriptor = open(devTTY, O_RDWR | O_NOCTTY);
//fileDescriptor = open(devTTY, O_RDWR | O_NOCTTY /*| OPOST*/);
if (fileDescriptor == -1) {
    perror("Error while opening serial interface occurred!");
    return -99;
}

// set new parameters to the serial device
struct termios newtio;
bzero(&newtio, sizeof(newtio));
newtio.c_cflag = BAUDRATE | CRTSCTS | CS8 | CLOCAL | CREAD;

// set to 8N1
newtio.c_cflag &= ~PARENB;
newtio.c_cflag &= ~CSTOPB;
newtio.c_cflag &= ~CSIZE;
newtio.c_cflag |= CS8;

newtio.c_iflag = IGNPAR;

// output mode to
//newtio.c_oflag = 0;
newtio.c_oflag |= OPOST;

/* set input mode (non-canonical, no echo,...) */
newtio.c_lflag = 0;

newtio.c_cc[VTIME] = 10; /* inter-character timer 1 sec */
newtio.c_cc[VMIN] = 0; /* blocking read disabled  */

tcflush(fileDescriptor, TCIFLUSH);
if (tcsetattr(fileDescriptor, TCSANOW, &newtio)) {
    perror("could not set the serial settings!");
    return -99;
}

//----< / Open serial device >----------------------------------
return fileDescriptor;
}

int ACK[1] = { 6 };

int main() {
// old termios to restablish
struct termios oldTIO;
// filedescriptor
int fd;

fd = openSerialDevice(TTYDEVICE, oldTIO);

if ((fd == -1) | (fd == -99)) {
    perror("Could not open TTY-Device. Exit on failure!");
    return EXIT_FAILURE;
}

write(fd, ACK, 1);  // Problem !! 


     return 0:
}

现在,如果我使用

  

screen / dev / ttyS1 9600 8n1

验证/ dev / ttyS0上会出现什么。我看不到任何东西。如果我用Docklight 1.8嗅探相同的话。

有什么建议吗?感谢

3 个答案:

答案 0 :(得分:2)

你如何证实什么都没有出来?

您可以尝试删除RTSCTS,然后重试。事实上,如果您想从tty层获得最小的干扰,则应将终端设置为raw,使用:

cfmakeraw(&newtio);

答案 1 :(得分:2)

您正在为write()提供ACK的数据参数,这是指向int的指针。这可能不是你的意思。这取决于您所使用的计算机的endianness,这意味着write()将“看到”包含字符{ 6, 0, 0, 0 }(小端)或{ 0, 0, 0, 6 }的缓冲区(大-endian)。这假设sizeof (int) == 4为真,根据需要调整其他尺寸,问题仍然存在。

你应该很可能改为使用缓冲区unsigned char。另外,如果你这样打过电话:

int wrote = write(fd, ACK, sizeof ACK);
printf("Wrote %d bytes\n", wrote);

你会得到直接反馈。你应该测试这样的东西,看看写实际上是否成功。

答案 2 :(得分:0)

激活的硬件流控制(CRTSCTS)是write()被阻止的原因,最后在串行输出上没有出现任何内容。

谢谢!

代码捕捉有效:

int openSerialDevice(const char* devTTY, struct termios oldTio) {

    //----< Open serial device >----------------------------------
    int fileDescriptor;
    // fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY | O_NDELAY);
    fileDescriptor = open(devTTY, O_RDWR | O_NOCTTY);
    //fileDescriptor = open(devTTY, O_RDWR | O_NOCTTY /*| OPOST*/);
    if (fileDescriptor == -1) {
        perror("Error while opening serial interface occurred!");
        return -99;
    }

    // set new parameters to the serial device
    struct termios newtio;

    fcntl(fileDescriptor, F_SETFL, 0);
    // set everything to 0
    bzero(&newtio, sizeof(newtio));

    // again set everything to 0
    bzero(&newtio, sizeof(newtio));

    newtio.c_cflag |= BAUDRATE; // Set Baudrate first time
    newtio.c_cflag |= CLOCAL; // Local line - do not change "owner" of port
    newtio.c_cflag |= CREAD; // Enable receiver

    newtio.c_cflag &= ~ECHO; // Disable echoing of input characters
    newtio.c_cflag &= ~ECHOE;

    // set to 8N1
    newtio.c_cflag &= ~PARENB; // no parentybyte
    newtio.c_cflag &= ~CSTOPB; // 1 stop bit
    newtio.c_cflag &= ~CSIZE; // Mask the character size bits
    newtio.c_cflag |= CS8; // 8 data bits

    // output mode to
    newtio.c_oflag = 0;
    //newtio.c_oflag |= OPOST;


    // Set teh baudrate for sure
    cfsetispeed(&newtio, BAUDRATE);
    cfsetospeed(&newtio, BAUDRATE);

    newtio.c_cc[VTIME] = 10; /* inter-character timer  */
    newtio.c_cc[VMIN] = 0; /* blocking read until  */

    tcflush(fileDescriptor, TCIFLUSH); // flush pending data

    // set the new defined settings
    if (tcsetattr(fileDescriptor, TCSANOW, &newtio)) {
        perror("could not set the serial settings!");
        return -99;
    }

    //----< / Open serial device >----------------------------------
    return fileDescriptor;
}