错误 errno 11 资源暂时不可用

问题描述 投票:0回答:1

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

c usbserial
1个回答
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
是不必要的,您只需将字符复制到数组中即可。

© www.soinside.com 2019 - 2024. All rights reserved.