资源描述:
《Linux串口通讯编程》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Linux串口通讯编程 Linux串口通讯编程 串行口是计算机一种常用的接口,具有连接线少,通讯简单,得到广泛的使用。常用的串口是RS-232-C接口.由于Linux引入了设备文件的概念,读写串口可以像读写普通文件一样进行操作,非常简单,方便。串口操作所需的头文件//标准输入输出定义//标准函数库定义//Unix标准函数定义//类型定义//文件控制定义//PPSIX终端控制定义//错误号定义打开串口串口一:/dev/ttyS0串口二:/dev/ttyS1使用标准的文件打开函数打开串口文件:intfd;fd=open("/dev/ttyS0",O_RD
2、WR);if(fd==-1){perror("can'topenttyS0");}设置串口包括波特率设置,效验位和停止位设置通过structtermios结构进行设置structtermios{unsignedshortc_iflag;//输入模式标志(in)unsignedshortc_oflag;//输出模式标志(out)unsignedshortc_cflag;//控制模式标志(control)unsignedshortc_lflag;//本地模式标志(local)unsignedcharc_line; //linedesciplineuns
3、ignedcharc_cc[NCC];//controlcharacters控制字符}设置波特率的代码如下:structtermiosOpt;tcgetattr(fd,&Opt);//获取已有属性cfsetispeed(&Opt,B19200);//设置输入为19200Bpscfsetospeed(&Opt,B19200);//设置输出为19200Bpstcsetattr(fd,TCANOW,&Opt);//设置新的属性设置波特率的例子函数:intspeed_arr[]={B38400,B19200,B9600,B4800,B2400,B1200,B
4、300};intname_arr[]={38400, 19200, 9600, 4800, 2400, 1200, 300};voidset_speed(intfd,intspeed){inti,status;structteriosOpt;tcgetattr(fd,&Opt);//获取已有属性值for(i=0;i5、eed(&&opt,speed_arr);status=tcsetattr(fd,TCSANOW,&Opt);if(status!=0){perror("tcsetattrfd");return;}tcflush(fd,TCIOFLUSH);}}}读写串口设置好串口再进行读写,把串口当作文件读写就可以了.发送数据charbuffer[1024];intlength,nByte;nByte=write(fd,buffer,length);读取数据使用文件操作read函数读取,如果设置为原始模式(RawMode)传输数据,那么read函数返回的字符数是实
6、际串口收到的字符数。可以使用操作文件的函数来实现异步读取,如fcntl,或者select等来操作。char buff[1024];int Len;int readByte=read(fd,buff,Len);关闭串口关闭串口就是关闭文件。close(fd);