免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3154 | 回复: 5
打印 上一主题 下一主题

[C] Linux/UNIX下串口收发问题??? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-08-06 14:48 |只看该作者 |倒序浏览
系统环境: Solaris 10
串口设备: /dev/cua/a

程序:
#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>      /*错误号定义*/

#define FALSE 0
#define TRUE  1
/***@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)
           {
               tcflush(fd, TCIOFLUSH);
            cfsetispeed(&Opt, speed_arr);
            cfsetospeed(&Opt, speed_arr);
            status = tcsetattr(fd, TCSANOW, &Opt);
            if  (status != 0)
            perror("tcsetattr fd1");
             return;
             }
   tcflush(fd,TCIOFLUSH);
   }
}

/**
*@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] = {0};
        char *dev ="/dev/cua/a";
        fd = OpenDev(dev);
        if (fd>0)
        {
                set_speed(fd,9600);
        }
               
        else
        {
                printf("Can't Open Serial Port!\n");
                exit(0);
                 }
        while(1)
        {
        int        cou = 0;
        int length = 28;
               while(length>0)
           {
             nread = read(fd,buff+cou,length);
                   printf("nread %d\n",nread);                     cou+=nread;
             length=length-nread;
            }
          }
       close(fd);
       return 0;
}


问题:
此程序运行在Solaris 10上。
我将这台装有Solaris 10系统的PC机和另一台装有Windows 2003系统的PC机通过一条双串口连接线相连。
当我在Windows2003系统中通过串口助手,向Solaris10机器发送一串十六进制数据,
如:7E01010000FFFFFF2600800102FF0701010000000004020100D8427E
这串数据有28个字节, 通过串口助手以十六进制形式发送。

程序显示:nread 21

为什么只收到21个节,另外7个字节怎么没有收到???

论坛徽章:
0
2 [报告]
发表于 2010-08-06 16:45 |只看该作者
没人回答???

论坛徽章:
0
3 [报告]
发表于 2010-08-06 17:38 |只看该作者
本帖最后由 beyond_touch 于 2010-08-06 17:44 编辑

Opt.c_cc[VMIN] = 1;
还有你的情况,不能表明你只收到21个字节。

论坛徽章:
0
4 [报告]
发表于 2010-08-09 09:10 |只看该作者
上面的大侠,能说详细一点吗?

论坛徽章:
0
5 [报告]
发表于 2010-08-09 09:36 |只看该作者
本帖最后由 beyond_touch 于 2010-08-09 09:43 编辑

详细的 man termios

   Noncanonical Mode Input Processing
     In noncanonical mode input processing, input bytes are not assembled into
     lines, and erase and kill processing does not occur.  The values of the
     MIN and TIME members of the c_cc array are used to determine how to
     process the bytes received.

     MIN represents the minimum number of bytes that should be received when
     the read function successfully returns.
  TIME is a timer of 0.1 second
     granularity that is used to time out bursty and short term data transmis-
     sions.  If MIN is greater than { MAX_INPUT}, the response to the request
     is undefined.  The four possible values for MIN and TIME and their inter-
     actions are described below.

  1.         struct termios options;
  2.         // Get the current options for the port...
  3.         tcgetattr(fd, &options);
  4.         // Set the baud rates to 9600...
  5.         cfsetispeed(&options, B9600);
  6.         cfsetospeed(&options, B9600);
  7.         // Enable the receiver and set local mode...
  8.         options.c_cflag |= (CLOCAL | CREAD);

  9.         options.c_cflag &= ~PARENB;
  10.         options.c_cflag &= ~CSTOPB;
  11.         options.c_cflag &= ~CSIZE;
  12.         options.c_cflag |= CS8;

  13.         options.c_cc[VTIME] = 0;
  14.         options.c_cc[VMIN] = 1;

  15.         // Set the new options for the port...
  16.         tcsetattr(fd, TCSANOW, &options);
  17.         return 1;
复制代码

论坛徽章:
0
6 [报告]
发表于 2010-08-09 11:25 |只看该作者
可以了, 多谢beyond_touch
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP