`
wuzijingaip
  • 浏览: 329718 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

linux 串口编程

 
阅读更多
#include     <stdio.h>      /*标准输入输出定义*/
#include     <stdlib.h>     /*标准函数库定义*/
#include     <unistd.h>     /*Unix标准函数定义*/
#include     <sys/types.h>  /**/
#include     <sys/stat.h>   /**/
#include     <fcntl.h>      /*文件控制定义*/
#include     <termios.h>    /*PPSIX终端控制定义*/
#include     <errno.h>      /*错误号定义*/

/***@brief  设置串口通信速率
*@param  fd     类型 int  打开串口的文件句柄
*@param  speed  类型 int  串口速度
*@return  void*/

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);
 }
/**
*@breif 打开串口
*/
int OpenDev(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;

}
/**
*@breif 	main()
*/
int main(int argc, char **argv)
{
	int fd;
	int nread;
	char buff[512];
	char *dev ="/dev/ttyS1";
	fd = OpenDev(dev);
	if (fd>0)
    set_speed(fd,19200);
	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("\nLen %d\n",nread);
      		buff[nread+1]='\0';
      		printf("\n%s",buff);
   	 	}
  	}
    //close(fd);
    //exit(0);
}

分享到:
评论

相关推荐

    Linux串口编程详解

    Linux串口编程详解 串口编程是计算机科学中的一种重要技术,它允许计算机与外部设备进行通信。编程语言中串口编程的实现方式有多种,包括使用C语言、Java语言等。 Linux串口编程详解中,串口是计算机上的串行通讯...

    Linux串口编程ppt

    嵌入式 linux 串口编程 熟悉了解linux下的串口编程

    Linux串口编程-ESP8266WIFI模块应用

    Linux串口编程,结合ESP8266WIFI模块,实现开发板之间的wifi通信。本工程使用c语言对串口进行编程,运用read,write函数对串口进行AT指令发送以及数据传输。同时,也包含了对termios结构体的运用。

    linux串口编程(中嵌教育-嵌入式linux开发课件)

    【Linux串口编程】是嵌入式Linux开发中的重要组成部分,它涉及到计算机硬件接口和操作系统对串行通信的支持。串口通信,也称为UART(通用异步收发传输器)通信,是计算机常用的一种接口标准,如RS-232-C,通常使用DB...

    linux串口编程例子直接make编译

    本教程主要讲解如何进行Linux串口编程,包括非阻塞`read`,打包`write`,设备打开及串口配置。我们将通过一个名为`uart_test`的示例程序来深入理解这些概念。 首先,我们需要了解Linux系统中的串口接口。在Linux...

    linux串口编程从驱动到应用

    Linux 串口编程从驱动到应用 一、串口初始化 Linux 系统中,串口初始化是串口编程的第一步。通常情况下,串口初始化需要在板级支持包(BSP)中实现。在 AT91SAM9260 的板级支持包中,串口初始化是在 `/arch/arm/...

    linux串口编程

    Linux串口编程是嵌入式开发、物联网应用和系统调试中的重要技能,它涉及到与硬件设备的通信,如调制解调器、GPS模块或传感器等。在Linux系统中,串口通常表现为特殊的文件,位于/dev目录下,比如/dev/ttyS0、/dev/...

    Linux 串口编程详解(cn)

    Linux 串口编程详解(cn)

    非 标准输入.rar_linux 串口编程_linux串口_linux串口编程

    本资源“非标准输入.rar”提供了关于Linux串口编程的一个实例,名为“linux串口编程示例3”,帮助开发者了解如何通过C语言与串行端口进行交互。 串口在Linux中通常被识别为/dev/ttySx(x为0、1或更高数字,表示串口...

    Linux_serial_programming.rar_linux 串口_linux 串口 编程_linux 串口编程_串口

    **Linux 串口编程详解** ...总结来说,Linux串口编程是嵌入式开发、物联网设备通信、远程控制等领域的基础技能。理解其工作原理,掌握API的使用,并通过实践编写串口通信程序,能帮助开发者实现高效稳定的串口交互。

    Linux串口编程分析

    Linux串口编程分析--Linux串口编程分析--Linux串口编程分析

    Linux环境下串口编程.rar_linux 串口_linux 串口 编程_串口编程

    Linux串口编程广泛应用于嵌入式系统、自动化设备、遥测系统、GPS模块、无线模块等,通过串口进行数据交换和控制指令的发送。 总之,Linux串口编程是开发者必备的技能之一,通过理解和实践,可以掌握如何在Linux...

    linux串口编程实例

    本教程主要探讨的是如何在Linux环境下进行串口编程,通过提供的源码实现串口的基础配置,并根据配置文件动态调整串口设置。以下是关于这个主题的详细知识点: 1. **Linux串口基础**: - Linux中的串口通常指的是...

    linux下串口编程详解资料

    在Linux系统中,串口通信是一种基础且重要的通信方式,广泛应用于...提供的"串口编程资料"应该包含了更多详细的信息,如函数的具体用法、实际代码示例以及错误处理策略,对于学习和提高Linux串口编程技能大有裨益。

    LINUX串口编程入门

    ### LINUX串口编程入门 #### 串口编程基础与Linux支持 串行接口(简称“串口”)是计算机常用的一种通信接口,以其简洁的连线和便捷的数据传输特性被广泛应用于多种场合。最常见的串行接口标准是RS-232-C(又称为...

    嵌入式linux串口编程.doc

    在Linux串口编程中,`termios.h`头文件提供了所有相关的函数和结构体定义,它是进行串口通信的基础。通过熟练掌握这些函数和参数,开发者可以灵活地控制串口,实现与各种设备的高效通信。在开发过程中,结合实践不断...

Global site tag (gtag.js) - Google Analytics