Linux下串口编程1

 Linux系统下,诸如串口、触摸屏、GPIO、ADC等等各种设备的操作,都是通过访问其对应的设备节点进行控制。相应地,串口通过访问/dev/ttyS0、/dev/ttyS1、/dev/ttyS2...对其进行配置与控制。
串口配置的参数包括:波特率,数据位,校验位,停止位与流控。
串口的配置主要是通过配置struct termios结构体,其原型如下:
[cpp]  view plain copy print ?
  1. #include<termios.h>  
  2. struct termio  
  3. {  
  4.   unsigned short c_iflag;       /*输入模式标志*/  
  5.   unsigned short c_oflag;       /*输出模式标志*/  
  6.   unsigned short c_cflag;       /*控制模式标志*/  
  7.   unsigned short c_lfag;        /*本地模式标志*/  
  8.   unsigned short c_line;        /*line discipline*/  
  9.   unsigned short c_cc[NCC];   /*control characters*/  
  10. };  
其中,通过对 c_cflag与c_iflag 的赋值,可以设置波特率、数据位、奇偶校验位、停止位、流控。
1、波特率配置
串口通过函数cfsetispeed和cfsetospeed设置端口的输入/输出波特率:
int cfsetispeed(struct termios *termios_p, speed_t speed);
int cfsetospeed(struct termios *termios_p, speed_t speed);
其中termios_p为串口接头体termios指针变量;speed为需要设置的串口传输速率,取值与波特率对应关系见表:  

   

波特率(单位:bit/s

   

波特率(单位:bit/s

B0

0

B1800

1800

B50

50

B2400

2400

B75

75

B4800

4800

B110

110

B9600

9600

B134

134

B19200

19200

B150

150

B38400

38400

B200

200

B57600

57600

B300

300

B115200

115200

B600

600

B230400

230400

B1200

1200

 

 

2、数据位配置
串口数据位的配置通过修改termios结构体成员c_cflag实现,CS5、CS6、CS7和CS8分别表示数据位为5、6、7和8。在设置数据位前,先使用CSIZE做位屏蔽:
termios_p.c_cflag &= ~CSIZE;
termios_p.c_cflag  |=  CS5;  /*配置为5数据位*/
3、校验位配置
校验位包括:无校验、奇校验、偶校验、空格等:
无校验:
termios_p.c_cflag &= ~PARENB;
termios_p.c_iflag &= ~INPCK;
奇校验:
termios_p.c_cflag &= (PARODD | PARENB);
termios_p.c_iflag &= INPCK;
偶校验:
termios_p.c_cflag |= PARENB;
termios_p.c_cflag ~PARODD;
termios_p.c_iflag & |= INPCK;
空格:
termios_p.c_cflag &= ~PARENB;
termios_p.c_cflag &= ~CSTOPB;
termios_p.c_iflag |= INPCK;
4、停止位配置
串口停止位通过激活c_cflag的CSTOPB控制,具体方法如下:
1个停止位:
termios_p.c_cflag &= ~CSTOPB;
2个停止位:
termios_p.c_cflag |= CSTOPB;
5、流控配置
流控用于标识数据的开始与结束,流控的种类包括硬件流、软件流与不使用流控。
不使用流控:
termios_p.c_cflag &= ~CRTSCTS;
硬件流:
termios_p.c_cflag |= CRTSCTS;
软件流:
termios_p.c_cfalg |= IXON | IXOFF | IXANY;
 

例子程序:
程序实现了配置串口0参数与向串口0输出数据

[cpp]  view plain copy print ?
  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. #include <unistd.h>  
  4. #include <sys/types.h>  
  5. #include <sys/stat.h>  
  6. #include <fcntl.h>  
  7. #include <termios.h>  
  8. #include <errno.h>  
  9. #include <asm/ioctl.h>  
  10.   
  11. void Set_uart(int fd, int databits, int stopbit, char parity, char datastream)  
  12. {  
  13. int ret;  
  14. struct termios termios_opt;  
  15.   
  16. if(tcgetattr(fd, &termios_opt))  
  17. {  
  18.   perror("tcgetattr error\n");  
  19.   return;  
  20. }  
  21.   
  22. /*flush memory*/  
  23. tcflush(fd,TCIOFLUSH);  
  24.   
  25. /*Set i/o speed*/  
  26. cfsetispeed(&termios_opt, B115200);  
  27. cfsetospeed(&termios_opt, B115200);  
  28.   
  29. /*active options*/  
  30. termios_opt.c_cflag |= CLOCAL | CREAD;  
  31.   
  32. /*set databits,default is 8 databits*/  
  33. termios_opt.c_cflag &= ~CSIZE;  
  34. switch (databits)  
  35. {  
  36.   case 5:  
  37.     termios_opt.c_cflag |= CS5;  
  38.     break;  
  39.   case 6:  
  40.     termios_opt.c_cflag |= CS6;  
  41.     break;  
  42.   case 7:  
  43.     termios_opt.c_cflag |= CS7;  
  44.     break;  
  45.   case 8:  
  46.     termios_opt.c_cflag |= CS8;  
  47.     break;  
  48.   default:  
  49.     termios_opt.c_cflag |= CS8;  
  50.     break;  
  51. }  
  52.   
  53. /*Set Parity, default is no vertify*/  
  54. switch (parity)  
  55. {   
  56.   case 'N'/*no vertify*/  
  57.     termios_opt.c_cflag &= ~PARENB;  
  58.     termios_opt.c_iflag &= ~INPCK;  
  59.     break;  
  60.   case 'O'/*odd vertify*/  
  61.     termios_opt.c_cflag |= (PARODD | PARENB);  
  62.     termios_opt.c_iflag |= INPCK;  
  63.     break;  
  64.   case 'E'/*even vertify*/  
  65.     termios_opt.c_cflag |= PARENB;  
  66.     termios_opt.c_cflag &= ~PARODD;  
  67.     termios_opt.c_iflag |= INPCK;  
  68.     break;  
  69.   case 'S'/*space vertify*/  
  70.     termios_opt.c_cflag &= ~PARENB;  
  71.     termios_opt.c_cflag &= ~CSTOPB;  
  72.     termios_opt.c_iflag |= INPCK;  
  73.     break;  
  74.   default:  
  75.     termios_opt.c_cflag &= ~PARENB;  
  76.     termios_opt.c_iflag &= ~INPCK;  
  77.     break;  
  78. }  
  79.   
  80. /*Set stop bits, default is 1 stopbit*/   
  81. switch (stopbit)  
  82. {  
  83.   case 1:  
  84.     termios_opt.c_cflag &= ~CSTOPB;  
  85.     break;  
  86.   case 2:  
  87.     termios_opt.c_cflag |= CSTOPB;  
  88.     break;  
  89.   default:  
  90.     termios_opt.c_cflag &= ~CSTOPB;  
  91.     break;  
  92. }  
  93.   
  94. /*set data stream,default is no data stream control*/  
  95. switch (datastream)  
  96. {  
  97.   case 'N'/*no data stream control*/  
  98.     termios_opt.c_cflag &= ~CRTSCTS;  
  99.     break;  
  100.   case 'H'/*hardware data stream control*/  
  101.     termios_opt.c_cflag |= CRTSCTS;  
  102.     break;  
  103.   case 'S'/*software data stream control*/  
  104.     termios_opt.c_cflag |= IXON | IXOFF | IXANY;  
  105.     break;  
  106.   default:  
  107.     termios_opt.c_cflag &= ~CRTSCTS;  
  108.     break;  
  109. }  
  110.   
  111. /*oput modle,initial data output*/  
  112. termios_opt.c_oflag &= ~OPOST;  
  113.   
  114. /*set waiting time and recv min character*/  
  115. termios_opt.c_cc[VTIME] = 0;  
  116. termios_opt.c_cc[VMIN] = 0;  
  117.   
  118. /*flush memory*/  
  119. tcflush(fd,TCIFLUSH);  
  120.   
  121. /*start using new options*/  
  122. if((tcsetattr(fd,TCSANOW,&termios_opt)) != 0)  
  123. {  
  124.   perror("serial setup error\n");  
  125.   return;  
  126. }  
  127.   
  128. printf("set serial done!\n");  
  129. return ;  
  130. }  
  131.   
  132. int main(void)  
  133. {  
  134. int serial_fd;  
  135. unsigned char data[14] = {0};  
  136.   
  137. memset(data,'a',sizeof(data));  
  138. printf("open UART..\n");  
  139.   
  140. serial_fd = open("/dev/ttyS0",O_RDWR | O_NOCTTY | O_NONBLOCK);  
  141. if (serial_fd == -1)  
  142. {  
  143.   perror("Serial open error!\n");  
  144.   return -1;  
  145. }  
  146.   
  147. /*Set uart*/  
  148. Set_uart(serial_fd, 8, 1, 'N''N'); //8 databits, 1 stopbit, No vertify, No data stream control  
  149.   
  150. while(1)  
  151. {  
  152.   write(serial_fd, data, sizeof(data));      
  153.   tcdrain(serial_fd);  
  154.   sleep(2);  
  155.  }   
  156.  close(serial_fd);  
  157.  return 0;  

你可能感兴趣的:(Linux下串口编程1)