- 论坛徽章:
- 0
|
使用串口运行一段时间后,老是出现
ttyS0:1 input overrun(s) 哪位碰到过的啊??????????
串口设置如下:
int set_Parity(int fd, sint8 databits, sint8 stopbits, sint8 parity)
{
struct termios options;
if ( tcgetattr( fd,&options) != 0) /*读取串口termios结构*/
{
perror("SetupSerial 1");
#if WRITELOG == 1
writelog(PATH, "SetupSerial 1");
#endif
return(FALSE);
}
options.c_cflag &= ~CSIZE; /*清除原字符大小*/
options.c_iflag &= ~IGNCR; /*不忽略收到的回车字符*/
options.c_iflag &= ~ICRNL; /*不转换*/
options.c_iflag &= ~(IXON | IXOFF | IXANY); /*关硬件流控*/
// options.c_iflag |= (IXON | IXOFF | IXANY); /*关硬件流控*/
switch (databits) /*设置数据位数*/
{
case 7:
options.c_cflag |= CS7; /*设置7位数据位数*/
break;
case 8:
options.c_cflag |= CS8; /*设置8位数据位数*/
break;
default:
fprintf(stderr,"Unsupported data size\n");
return (FALSE);
}
switch (parity)
{
case 'n': /*无校验*/
case 'N':
options.c_cflag &= ~PARENB; /*清奇偶校验位*/
options.c_iflag &= ~INPCK; /*奇偶校验无效*/
break;
case 'o': /*奇校验*/
case 'O':
options.c_cflag |= (PARODD | PARENB); /*设置为奇效验*/
options.c_iflag |= INPCK; /*使奇偶校验有效*/
break;
case 'e': /*偶校验*/
case 'E':
options.c_cflag |= PARENB; /* 使奇偶校验有效*/
options.c_cflag &= ~PARODD; /* 设置偶效验*/
options.c_iflag |= INPCK; /* 输入奇偶校验生效 */
break;
case 'S': /*space校验*/
case 's': /*as no parity*/
options.c_cflag &= ~PARENB;
options.c_cflag &= ~CSTOPB;
break;
default:
fprintf(stderr,"Unsupported parity\n");
return (FALSE);
}
/* 设置停止位*/
switch (stopbits)
{
case 1: /*1位停止位*/
options.c_cflag &= ~CSTOPB;
break;
case 2: /*2位停止位*/
options.c_cflag |= CSTOPB;
break;
default:
fprintf(stderr,"Unsupported stop bits\n");
return (FALSE);
}
/* 设置输入奇偶校验选项 */
if (parity != 'n')
options.c_iflag |= INPCK; /* 输入奇偶检测生效 */
tcflush(fd,TCIFLUSH); /* 清输入输出队列 */
options.c_cc[VTIME] = 150; /* 设置超时15 seconds*/
options.c_cc[VMIN] = 0; /* 更新设置,使马上生效 */
options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); /* 输入 */
options.c_oflag &= ~OPOST; /* 输出 */
if (tcsetattr(fd,TCSANOW,&options) != 0) /* 对串口进行参数设置 */
{
perror("SetupSerial 3");
#if WRITELOG == 1
writelog(PATH, "SetupSerial 3");
#endif
return (FALSE);
}
return (TRUE);
} |
|