原创 Linux串口编程(转载)

2013-12-14 00:12 584 14 1

int set_Parity(int fd,int databits,int stopbits,int parity)
{
 struct termios options;
 if  ( tcgetattr( fd,&options)  !=  0) {
  perror("SetupSerial 1");    
  return(CHK_ERR); 
 }
 options.c_cflag &= ~CSIZE;

 switch (databits) /*设置数据位数*/
 {  
 case 7:  
  options.c_cflag |= CS7;
  break;
 case 8:    
  options.c_cflag |= CS8;
  break;  
 default:   
  fprintf(stderr,"Unsupported data size\n"); return (CHK_ERR); 
 }
 switch (parity)
 {  
  case 'n':
  case 'N':   
   options.c_cflag &= ~PARENB;   /* Clear parity enable */
   options.c_iflag &= ~INPCK;     /* Enable parity checking */
   break; 
  case 'o':  
  case 'O':    
   options.c_cflag |= (PARODD | PARENB); /* 设置为奇效验*/ 
   options.c_iflag |= INPCK;             /* Disnable parity checking */
   break; 
  case 'e': 
  case 'E':  
   options.c_cflag |= PARENB;     /* Enable parity */   
   options.c_cflag &= ~PARODD;   /* 转换为偶效验*/    
   options.c_iflag |= INPCK;       /* Disnable parity checking */
   break;
  case 'S':
  case 's':  /*as no parity*/  
      options.c_cflag &= ~PARENB;
   options.c_cflag &= ~CSTOPB;break; 
  default:  
   fprintf(stderr,"Unsupported parity\n");   
   return (CHK_ERR); 
 } 
 /* 设置停止位*/ 
 switch (stopbits)
 {  
  case 1:   
   options.c_cflag &= ~CSTOPB; 
   break; 
  case 2:   
   options.c_cflag |= CSTOPB; 
     break;
  default:   
    fprintf(stderr,"Unsupported stop bits\n"); 
    return (CHK_ERR);
 }
 /* Set input parity option */
 if (parity != 'n')   options.c_iflag |= INPCK;

 //清bit位  关闭字符映射 0x0a 0x0d
 options.c_iflag &= ~(INLCR|ICRNL);
 //清bit位  关闭流控字符 0x11 0x13
 options.c_iflag &= ~(IXON);
 
 //需要注意的是:
 //如果不是开发终端之类的,只是串口传输数据,而不需要串口来处理,那么使用原始模式(Raw Mode)方式来通讯,设置方式如下:
 options.c_lflag  &= ~(ICANON | ECHO | ECHOE | ISIG);  //Input
 options.c_oflag  &= ~OPOST;   //Output

 tcflush(fd,TCIFLUSH);
 options.c_cc[VTIME] = 150; /* 设置超时15 seconds*/  
 options.c_cc[VMIN] = 0; /* Update the options and do it NOW */
 if (tcsetattr(fd,TCSANOW,&options) != 0)  
 {
  perror("SetupSerial 3");  
  return (CHK_ERR); 
 }
 return (CHK_OK); 
}

int set_Parity(int fd,int databits,int stopbits,int parity)
{
 struct termios options;
 if  ( tcgetattr( fd,&options)  !=  0) {
  perror("SetupSerial 1");    
  return(CHK_ERR); 
 }
 options.c_cflag &= ~CSIZE;

 switch (databits) /*设置数据位数*/
 {  
 case 7:  
  options.c_cflag |= CS7;
  break;
 case 8:    
  options.c_cflag |= CS8;
  break;  
 default:   
  fprintf(stderr,"Unsupported data size\n"); return (CHK_ERR); 
 }
 switch (parity)
 {  
  case 'n':
  case 'N':   
   options.c_cflag &= ~PARENB;   /* Clear parity enable */
   options.c_iflag &= ~INPCK;     /* Enable parity checking */
   break; 
  case 'o':  
  case 'O':    
   options.c_cflag |= (PARODD | PARENB); /* 设置为奇效验*/ 
   options.c_iflag |= INPCK;             /* Disnable parity checking */
   break; 
  case 'e': 
  case 'E':  
   options.c_cflag |= PARENB;     /* Enable parity */   
   options.c_cflag &= ~PARODD;   /* 转换为偶效验*/    
   options.c_iflag |= INPCK;       /* Disnable parity checking */
   break;
  case 'S':
  case 's':  /*as no parity*/  
      options.c_cflag &= ~PARENB;
   options.c_cflag &= ~CSTOPB;break; 
  default:  
   fprintf(stderr,"Unsupported parity\n");   
   return (CHK_ERR); 
 } 
 /* 设置停止位*/ 
 switch (stopbits)
 {  
  case 1:   
   options.c_cflag &= ~CSTOPB; 
   break; 
  case 2:   
   options.c_cflag |= CSTOPB; 
     break;
  default:   
    fprintf(stderr,"Unsupported stop bits\n"); 
    return (CHK_ERR);
 }
 /* Set input parity option */
 if (parity != 'n')   options.c_iflag |= INPCK;

 //清bit位  关闭字符映射 0x0a 0x0d
 options.c_iflag &= ~(INLCR|ICRNL);
 //清bit位  关闭流控字符 0x11 0x13
 options.c_iflag &= ~(IXON);
 
 //需要注意的是:
 //如果不是开发终端之类的,只是串口传输数据,而不需要串口来处理,那么使用原始模式(Raw Mode)方式来通讯,设置方式如下:
 options.c_lflag  &= ~(ICANON | ECHO | ECHOE | ISIG);  //Input
 options.c_oflag  &= ~OPOST;   //Output

 tcflush(fd,TCIFLUSH);
 options.c_cc[VTIME] = 150; /* 设置超时15 seconds*/  
 options.c_cc[VMIN] = 0; /* Update the options and do it NOW */
 if (tcsetattr(fd,TCSANOW,&options) != 0)  
 {
  perror("SetupSerial 3");  
  return (CHK_ERR); 
 }
 return (CHK_OK); 
}

作者: 李肖遥, 来源:面包板社区

链接: https://mbb.eet-china.com/blog/uid-me-3912462.html

版权声明:本文为博主原创,未经本人允许,禁止转载!

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
我要评论
0
14
关闭 站长推荐上一条 /3 下一条