繁体   English   中英

错误errno 11资源暂时不可用

[英]Error errno 11 Resource temporarily unavailable

我正在使用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转换器。 希望有人可以帮忙。 谢谢 :)

您从read调用中获取了错误代码EAGAIN ,这导致您退出循环并打印出错误。 当然, 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是不必要的,您可以将字符复制到数组中。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM