从串口linux读取

时间:2013-03-23 16:04:34

标签: c serial-port

我正在尝试从串口读取,但总是得到0(零)字符。已经阅读了“POSIX操作系统的串行编程指南”,但无法找出为什么程序没有等待(阻塞)。 代码:

#include <stdio.h>   /* Standard input/output definitions */
#include <string.h>  /* String function definitions */
#include <unistd.h>  /* UNIX standard function definitions */
#include <fcntl.h>   /* File control definitions */
#include <errno.h>   /* Error number definitions */
#include <termios.h> /* POSIX terminal control definitions */

void main()
{
    printf("Hello world\n");

    int fd; /* File descriptor for the port */
    int n;
    int bytes;

    char c;

    char buffer[10];
    char *bufptr;

    struct termios options;

    fd = open("/dev/ttyUSB0", O_RDWR | O_NOCTTY | O_NDELAY);

    if (fd == -1) {
        perror("open_port: Unable to open /dev/ttyUSB0 - ");
    }
    else {
        fcntl(fd, F_SETFL, FNDELAY);
    }

  tcgetattr( fd, &options );

  /* SEt Baud Rate */

  cfsetispeed( &options, B9600 );
  cfsetospeed( &options, B9600 );

  //I don't know what this is exactly

  options.c_cflag |= ( CLOCAL | CREAD );

  // Set the Charactor size

  options.c_cflag &= ~CSIZE; /* Mask the character size bits */
  options.c_cflag |= CS8;    /* Select 8 data bits */

  // Set parity - No Parity (8N1)

  options.c_cflag &= ~PARENB;
  options.c_cflag &= ~CSTOPB;
  options.c_cflag &= ~CSIZE;
  options.c_cflag |= CS8;

  // Disable Hardware flowcontrol

  //  options.c_cflag &= ~CNEW_RTSCTS;  -- not supported

  // Enable Raw Input

  options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);

  // Disable Software Flow control

  options.c_iflag &= ~(IXON | IXOFF | IXANY);

  // Chose raw (not processed) output

  options.c_oflag &= ~OPOST;

  if ( tcsetattr( fd, TCSANOW, &options ) == -1 )
    printf ("Error with tcsetattr = %s\n", strerror ( errno ) );
  else
    printf ( "%s\n", "tcsetattr succeed" );

    fcntl(fd, F_SETFL, 0);

    // Write to the port
    n = write(fd, "1", 1);

    if (n < 0) {
        fputs("write() of 1 bytes failed!\n", stderr);
    }

    // Read from the port

    //fcntl(fd, F_SETFL, FNDELAY);

    bytes = read(fd, &buffer, sizeof(buffer));
    printf("number of bytes read is %d\n", bytes);
    printf("%s\n", buffer);
    //perror ("read error:");

    close(fd);
}

2 个答案:

答案 0 :(得分:1)

此信息最初来自串行编程指南 1

您获得0返回值的原因是因为这一行:

fcntl(fd, F_SETFL, FNDELAY);

如果您想要正常的阻止读取,请取消设置该标记。

<子> 1。 http://www.easysw.com/~mike/serial/serial.html#2_5_4(现已解散)

答案 1 :(得分:0)

您正在使用O_NDELAY

  

O_NONBLOCK或O_NDELAY

     

如果可能,文件以非阻塞模式打开。 open()和文件上的任何后续操作都没有   返回的描述符将导致调用进程   等待。有关FIFO(命名管道)的处理,另请参见fifo(7)。对于   讨论O_NONBLOCK与强制性结合的影响   文件锁和文件租约,请参阅fcntl(2)。

编辑:你在fcntl()调用中也做了同样的事情。