错误错误11资源暂时不可用

时间:2015-10-14 07:09:48

标签: c usbserial

我正在使用USB转Uart转换器来传输和接收我的数据。 这是我的传输代码

void main()
{
int USB = open( "/dev/ttyUSB0", O_RDWR | O_NONBLOCK | O_NDELAY);        
struct termios tty;
struct termios tty_old;
memset (&tty, 0, sizeof tty);

/* Set Baud Rate */
cfsetospeed (&tty, (speed_t)B9600);
cfsetispeed (&tty, (speed_t)B9600);

/* Setting other Port Stuff */
tty.c_cflag     &=  ~PARENB;            // Make 8n1
tty.c_cflag     &=  ~CSTOPB;
tty.c_cflag     &=  ~CSIZE;
tty.c_cflag     |=  CS8;

tty.c_cflag     &=  ~CRTSCTS;           // no flow control
tty.c_cc[VMIN]   =  1;                  // read doesn't block
tty.c_cc[VTIME]  =  5;                  // 0.5 seconds read timeout
tty.c_cflag     |=  CREAD | CLOCAL;     // turn on READ & ignore ctrl lines

/* Make raw */
cfmakeraw(&tty);

/* Flush Port, then applies attributes */
tcflush( USB, TCIFLUSH );

/*  WRITE */   
unsigned char cmd[] = "YES this program is writing \r";
int n_written = 0,spot = 0;
do {
n_written = write( USB, &cmd[spot], 1 );
spot += n_written;
} while (cmd[spot-1] != '\r' && n_written > 0);

我的代码输出与已过期的

相同
YES this program is writing 

现在这是我从UART阅读的代码

/* READ   */
int n = 0,spot1 =0;
char buf = '\0';

/* Whole response*/
char response[1024];
memset(response, '\0', sizeof response);

do {
n = read( USB, &buf, 1 );
sprintf( &response[spot1], "%c", buf );
spot1 += n;
} while( buf != '\r' && n > 0);

if (n < 0) {
printf("Error reading %d %s",errno, strerror(errno));
}
else if (n==0) {
printf("read nothing");
}
else {
printf("Response %s",response);
}
}

来自Uart的这个读数给出了errno的错误,错误号11表示资源暂时不可用

我收到了这个输出

Error reading 11 Resource temporarily unavailable

我正在使用USB转UART转换器。希望有人能提供帮助。谢谢:))

1 个答案:

答案 0 :(得分:0)

您从EAGAIN调用中收到错误代码read,这导致您退出循环并打印出错误。当然EAGAIN意味着这是一个暂时的问题(例如,在您尝试阅读时没有任何内容可读,也许您想稍后再试?)。

您可以将读取重组为:

n = read(USB, &buf, 1)
if (n == 0) {
    break;
} else if (n > 0) {
    response[spot1++] = buf;
} else if (n == EAGAIN || n == EWOULDBLOCK)
    continue;
} else { /*unrecoverable error */
    perror("Error reading");
    break;
}

您可以通过将buf作为数组并一次读取多个字符来改进代码。另请注意,sprintf是不必要的,您只需将字符复制到数组中即可。