Linux串口通信

Win8.1-PL2303-树莓派,9600波特率通信正常

参考IBM:http://www.ibm.com/developerworks/cn/linux/l-serials/

#include     <stdio.h>
#include     <stdlib.h>
#include     <unistd.h>
#include     <sys/types.h>
#include     <sys/stat.h>
#include     <fcntl.h>
#include     <termios.h>
#include     <errno.h>
#include      <string.h>

#define TRUE 0
#define FALSE -1  

int speed_arr[] = { B38400, B19200, B9600, B4800, B2400, B1200, B300,
        B38400, B19200, B9600, B4800, B2400, B1200, B300, };
int name_arr[] = {38400,  19200,  9600,  4800,  2400,  1200,  300,
        38400,  19200,  9600, 4800, 2400, 1200,  300, };

void set_speed(int fd, int speed){

    int   i;
    int   status;
    struct termios   Opt;

    tcgetattr(fd, &Opt);

    for( i= 0;  i < sizeof(speed_arr) / sizeof(int);  i++){
        if(speed == name_arr[i]){
            tcflush(fd, TCIOFLUSH);
            cfsetispeed(&Opt, speed_arr[i]);
            cfsetospeed(&Opt, speed_arr[i]);
            status = tcsetattr(fd, TCSANOW, &Opt);

        if (status != 0)
            perror("tcsetattr fd1");
            return;
         }

        tcflush(fd,TCIOFLUSH);
    }
}

/**
*@brief   设置串口数据位,停止位和效验位
*@param  fd     类型  int  打开的串口文件句柄*
*@param  databits 类型  int 数据位   取值 为 7 或者8*
*@param  stopbits 类型  int 停止位   取值为 1 或者2*
*@param  parity  类型  int  效验类型 取值为N,E,O,,S
*/
int set_Parity(int fd,int databits,int stopbits,int parity){

    struct termios options;
    if( tcgetattr( fd,&options)  !=  0){
        perror("SetupSerial 1");
        return FALSE;
    }

    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 FALSE;
    }

    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 (FALSE);
        }
    /* 设置停止位*/
    switch (stopbits){
        case 1:
            options.c_cflag &= ~CSTOPB;
            break;
        case 2:
            options.c_cflag |= CSTOPB;
            break;
        default:
            fprintf(stderr,"Unsupported stop bits\n");
            return FALSE;
        }
    /* Set input parity option */
    if (parity != ‘n‘)
          options.c_iflag |= INPCK;
        options.c_cc[VTIME] = 150; // 15 seconds
        options.c_cc[VMIN] = 0;

        tcflush(fd,TCIFLUSH); /* Update the options and do it NOW */

    if(tcsetattr(fd,TCSANOW,&options) != 0){
          perror("SetupSerial 3");
        return FALSE;
    }

    return TRUE;
 }

int OpenPort(char *Dev){

    int    fd = open( Dev, O_RDWR );         //| O_NOCTTY | O_NDELAY

    if (-1 == fd){ /*设置数据位数*/
        perror("Can‘t Open Serial Port");
        return -1;
    }else{
        return fd;
    }
}

int main(int argc, char **argv){    

    int fd;
    int nread;
    char buff[512];
    char *dev = "/dev/ttyAMA0";

    fd = OpenPort(dev);

    if(fd>0){
        set_speed(fd,9600);
    }else{
        printf("Can‘t Open Serial Port!\n");
        exit(0);
    }

    if(set_Parity(fd,8,1,‘N‘)== FALSE){
        printf("Set Parity Error\n");
        exit(1);
    }

    while(1){
           while((nread = read(fd,buff,512))>0){    

              printf("\n长度:%d\n",nread);
              buff[nread+1]=‘\0‘;
            printf("\n内容为:%s\n",buff);
            memset(buff,0,512);

            }
      }
    close(fd);
    exit(0);
}

Linux串口通信

时间: 2024-12-28 21:32:20

Linux串口通信的相关文章

嵌入式linux串口通信自发自收测试程序

/*串口自收自发程序主函数*/#include"uart_api.h"int main(){ int fd; char buff[BUFFER_SIZE]; char buff2[]="Hello NUAA2440!\n"; int nread,nwrite; if((fd=open_port(TARGET_COM_PORT))<0) {  perror("open serial error");  return 1; } printf(&

linux 串口通信 编程详解

计算机串口的引脚说明 序号 信号名称 符号 流向 功能 3 发送数据 TXD DTE→DCE DTE发送串行数据 2 接收数据 RXD DTE←DCE DTE 接收串行数据 7 请求发送 RTS DTE→DCE DTE 请求 DCE 将线路切换到发送方式 8 允许发送 CTS DTE←DCE DCE 告诉 DTE 线路已接通可以发送数据 6 数据设备准备好 DSR DTE←DCE DCE 准备好 5 信号地 SG   信号公共地 1 载波检测 DCD DTE←DCE 表示 DCE 接收到远程载波

linux下串口通信与管理

linux下的串口与windows有一些区别,下面将介绍一下linux下串口通信管理 查看是否支持USB串口: #lsmod | grep usbserial 如果没有信息:sudo apt-get install setserial 插上USB转串口,在终端输入命令 #dmesg | grep ttyUSB0 如果出现连接成功信息,则说明系统已经识别该设备 一.找到自己的串口设备 查找自己的开发板与电脑的连接的COM口方法 Windows:设备管理器 linux: (1)dmesg #查看带有

Linux与Windows串口通信

串口是常用的计算机与外部串行设备之间的数据传输通道,由于串行通信方便易行,所以应用广泛.现在国际上不断有串口新技术及新规格推出,结合社会各方面需要,串口通信发展的空间庞大.串口通讯技术因其自身的优势和特性,及计算机技术的广泛应用深入到生活和生产的各个领域,世界上数以亿计的通讯设备都以串口通讯的方式.在进行着数据的传输.在一个应用系统中,同时使用Windows和Linux操作系统,合理地分配资源,各取所长,是实现系统高性能的有效途径.为了使两个不同操作系统能协同工作,实现资源和数据共享,需要在两者

嵌入式Linux裸机开发(七)——UART串口通信

嵌入式Linux裸机开发(七)--UART串口通信 一.UART串口通信简介 通用异步收发器简称UART,即UNIVERSAL ASYNCHRONOUS RECEIVER AND TRANSMITTER, 它用来传输串行数据.发送数据时, CPU 将并行数据写入UART,UAR按照一定的格式在一根电线上串 行发出:接收数据时, UART检测另一根电线的信号,将串行收集在缓冲区中, CPU 即可读取 UART 获得这些数据. 在 S5PV210中, UART提供了 4 对独立的异步串口I/O端口,

Linux下串口通信工具minicom

minicom是linux下的串口通信工具,类似于Windows下的超级终端. 一般在yum源中可以直接安装 minicom -s可以设置minicom的速率,流控之类. 如上图:A是你的设备名.如在台式机上用console接串口则一般为/dev/ttyS0, 如果笔记本上使用USB-串口转换则为/dev/ttyUSB0之类. Linux下一般均默认安装了USB-串口的驱动 将配置保存为默认(Save setup as dfl),下次输入minicom则可以启动 注意:非正常关闭minicom,

转:Qt编写串口通信程序全程图文讲解

转载:http://blog.csdn.net/yafeilinux/article/details/4717706  作者:yafeilinux (说明:我们的编程环境是windows xp下,在Qt Creator中进行,如果在Linux下或直接用源码编写,程序稍有不同,请自己改动.) 在Qt中并没有特定的串口控制类,现在大部分人使用的是第三方写的qextserialport类,我们这里也是使用的该类.我们可以去 http://sourceforge.net/projects/qextser

Qt 串口通信

在Qt5之前,串口通信基本依赖于第三方库,下面是我曾接触过的串口通信类库: 名称 语言 平台   QextSerialPort QT C++ Win/Linux http://sourceforge.net/projects/qextserialport/files/ QSerialPort QT C++ QT5已经集成 libserial C++ Linux http://files.cnblogs.com/kyyblabla/libserial-0.5.2.gz.7z 以上串口通信类库通信过

linux 串口0x03,0x13的问题【转】

linux 串口0x03,0x13的问题 本人最近在调linux串口的时候,发现其他数据接收正常,但是0x13怎么也接收不到,后面发现了这篇文章,两天的bug终于解决了,原来是linux底层uart配置问题,现分享给大家 版权所有,转载必须说明转自 http://my.csdn.net/weiqing1981127 原创作者:南京邮电大学  通信与信息系统专业 研二 魏清 环境:mini2440,fl6410,atmel9g45都会出现这样的问题 问题描述:使用RS485串口标准通信,发现大多数