功能我现在用到的是,当你这样做
-
fd = serial_open(0);
-
if(-1 == fd)
-
{
-
perror("UART open error!Please check.\n");
-
exit (-1);
-
}
-
serial_config(fd, B115200, SERIAL_8N1);//设置串口波特率 校验等
-
FD_ZERO(&set_input);//将指定文件描述符清空
-
FD_SET(fd, &set_input);//用于文件描述符集合增加一个新的文件描述符
这样写打开文件的函数之后,在其他函数里
-
timeout.tv_sec = 1;
-
timeout.tv_usec = 0;
-
ret_select = select(fd + 1, &set_input, NULL, NULL, &timeout);
-
/* See if there was an error */
-
if (ret_select < 0)
-
perror("select failed");
-
else if (ret_select == 0)
-
printf("timeout\n");
-
else
-
{
-
if (FD_ISSET(fd, &set_input))
-
{
-
//do something
-
}
-
}
这样用,就不用到处传递fd文件号了,函数里试了下fd的号码是一样的。
先记下来,周内总结下这个的用法。
阅读(1287) | 评论(0) | 转发(0) |