免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 9129 | 回复: 0
打印 上一主题 下一主题

!!!串口出错 ttyS0:1 input overrun(s) 请教!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-01-31 09:59 |只看该作者 |倒序浏览
使用串口运行一段时间后,老是出现
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);  
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP