首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

在linux下用串口发送数据有关问题

2012-04-09 
在linux下用串口发送数据问题:在linux下用如下程序通过串口发送数据char sendbuffer[66]if(nwrite writ

在linux下用串口发送数据问题:
在linux下用如下程序通过串口发送数据
char sendbuffer[66];
if(nwrite = write(fd, sendbuffer,64))>0)
{
printf("send data to uart success! nwrite = %d\n",nwrite); 
}
else
{
printf("\nsend data to uart fail!\n");
}  

当sendbuffer[]中含有数据 0 时,会出现发送失败的问题,即nwrite<= 0;
当sendbuffer中含有数据13,17,19等数据时,对方收到的数据是错误的,
这是什么问题,高手指教,急等!谢谢!

输入输出模式
  options.c_cflag &= ~CSIZE; 
  options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); /*Input*/
  options.c_oflag &= ~OPOST; /*Output*/
   
  if (set_Parity(fd,8,1,'N') == FALSE) 
  {
  printf("Set Parity Error\n");
  //return -1;
  }

[解决办法]
确认一下波特率设置是否正确

热点排行