免费注册 查看新帖 |

Chinaunix

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

linux与windows串口通信发文件有问题? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-12-21 16:17 |只看该作者 |倒序浏览
linux与windows串口通信,传字符串和结构没有问题,但是传超过一定大小(例如5K以上)就有问题,请问这是什么原因,串口通信发送文件有什么注意事项?
linux端的串口设置是:
        struct termios options;

        tcflush(fd, TCIOFLUSH);
        bzero(&options, sizeof(struct termios));
        options.c_iflag |= (ICRNL | IXON | IXOFF | IMAXBEL);
        options.c_oflag |= ONLCR;
        options.c_cflag |= (CS8 | HUPCL | CLOCAL | CREAD);
        options.c_lflag |= (IEXTEN | ECHOK | ECHOKE | ECHOCTL);
        options.c_cc[VTIME] = 0;
        options.c_cc[VMIN] = 1;
        cfsetispeed(&options, B115200);
        cfsetospeed(&options, B115200);
read和write是使用阻塞方式工作;
谢谢!

论坛徽章:
0
2 [报告]
发表于 2004-12-21 21:36 |只看该作者

linux与windows串口通信发文件有问题?

自己顶一下

论坛徽章:
0
3 [报告]
发表于 2004-12-22 11:36 |只看该作者

linux与windows串口通信发文件有问题?

参考一下我的设置

  1. /*******************************
  2.   文件名:         port.h
  3.   功能:                串口设置
  4.   创建时间:        2004-10-10
  5.   作者:                ssliao
  6. *******************************/

  7. #include                <stdio.h>;      
  8. #include          <stdlib.h>;     
  9. #include           <unistd.h>;     
  10. #include            <sys/types.h>;  
  11. #include             <sys/stat.h>;   
  12. #include             <fcntl.h>;      
  13. #include             <termios.h>;   
  14. #include             <errno.h>;      
  15. #include             <string.h>;
  16. #include             <string.h>;
  17. #include             <signal.h>;
  18. #include          <sys/mman.h>;
  19. #include                <sys/socket.h>;
  20. #include          <netinet/in.h>;

  21. #include         <sys/ioctl.h>;
  22. #include         <sys/select.h>;



  23. #define FALSE -1
  24. #define TRUE 0


  25. //#define FILEPATH "//ssliao//test//cdma.txt"
  26. //#define SHAREPATH "/root/program/shared.txt"

  27. /*********串口定义********/
  28. #define COM1                        "/dev/ttyUART0"
  29. #define COM2                        "/dev/ttyUART1"
  30. #define COM3                        "/dev/ttyS2"
  31. #define COM4                        "/dev/ttyS3"
  32. #define COM5                        "/dev/ttyS4"
  33. #define COM6                        "/dev/ttyS5"

  34. typedef struct{
  35.         char buffer1[512];
  36. }shared;


  37. int speed_arr[] = {B230400, B115200, B38400, B19200, B9600, B4800, B2400, B1200, B300,
  38.             B115200, B38400, B19200, B9600, B4800, B2400, B1200, B300, };
  39. int name_arr[] = {230400, 115200, 38400,  19200,  9600,  4800,  2400,  1200,  300,
  40.             115200, 38400,  19200,  9600, 4800, 2400, 1200,  300, };
  41. void set_speed(int fd, int speed) //设置波特率
  42. {
  43.   int   i;
  44.   int   status;
  45.   struct termios   Opt;
  46.   tcgetattr(fd, &Opt);
  47.   for ( i= 0;  i < sizeof(speed_arr) / sizeof(int);  i++)
  48.    {
  49.            if  (speed == name_arr[i])
  50.            {
  51.                tcflush(fd, TCIOFLUSH);
  52.             cfsetispeed(&Opt, speed_arr[i]);
  53.             cfsetospeed(&Opt, speed_arr[i]);
  54.             status = tcsetattr(fd, TCSANOW, &Opt);
  55.             if  (status != 0)
  56.             perror("tcsetattr fd1");
  57.              return;
  58.              }
  59.    tcflush(fd,TCIOFLUSH);
  60.    }
  61. }

  62. int set_Parity(int fd,int databits,int stopbits,int parity) //设置校验
  63. {
  64.         struct termios options;
  65. if  ( tcgetattr( fd,&options)  !=  0)
  66.   {
  67.           perror("SetupSerial 1");
  68.           return(FALSE);
  69.   }
  70.   options.c_cflag &= ~CSIZE;
  71.   switch (databits)
  72.   {
  73.           case 7:
  74.                   options.c_cflag |= CS7;
  75.                   break;
  76.           case 8:
  77.                 options.c_cflag |= CS8;
  78.                 break;
  79.         default:
  80.                 fprintf(stderr,"Unsupported data size\n");
  81.                 return (FALSE);
  82.         }
  83.   switch (parity)
  84.           {
  85.           case 'n':
  86.         case 'N':
  87.                 options.c_cflag &= ~PARENB;   /* Clear parity enable */
  88.                 options.c_iflag &= ~INPCK;     /* Enable parity checking */
  89.                 break;
  90.         case 'o':
  91.         case 'O':
  92.                 options.c_cflag |= (PARODD | PARENB);  
  93.                 options.c_iflag |= INPCK;             /* Disnable parity checking */
  94.                 break;
  95.         case 'e':
  96.         case 'E':
  97.                 options.c_cflag |= PARENB;     /* Enable parity */
  98.                 options.c_cflag &= ~PARODD;     
  99.                 options.c_iflag |= INPCK;       /* Disnable parity checking */
  100.                 break;
  101.         case 'S':
  102.         case 's':  /*as no parity*/
  103.                 options.c_cflag &= ~PARENB;
  104.                 options.c_cflag &= ~CSTOPB;
  105.                 break;
  106.         default:
  107.                 fprintf(stderr,"Unsupported parity\n");
  108.                 return (FALSE);
  109.                 }
  110.      
  111.   switch (stopbits)
  112.           {
  113.           case 1:
  114.                   options.c_cflag &= ~CSTOPB;
  115.                 break;
  116.         case 2:
  117.                 options.c_cflag |= CSTOPB;
  118.                 break;
  119.         default:
  120.                 fprintf(stderr,"Unsupported stop bits\n");
  121.                 return (FALSE);
  122.         }
  123.   /* Set input parity option */

  124.   if (parity != 'n')
  125.           options.c_iflag |= INPCK;
  126.         options.c_lflag = 0;
  127.         options.c_oflag = 0;
  128.         options.c_oflag |= OPOST;

  129.         options.c_cflag |= CLOCAL | CREAD;
  130.     options.c_cc[VTIME] =5; // 15 seconds
  131.     options.c_cc[VMIN] = 0;

  132.   tcflush(fd,TCIFLUSH); /* Update the options and do it NOW */
  133.   if (tcsetattr(fd,TCSANOW,&options) != 0)
  134.           {
  135.                   perror("SetupSerial 3");
  136.                 return (FALSE);
  137.         }
  138.   return (TRUE);
  139. }

  140. int OpenDev(const char *Dev) //打开串口
  141. {
  142.         int        fd = open( Dev, O_RDWR | O_NOCTTY);         //| O_NOCTTY | O_NDELAY
  143.         if (-1 == fd)
  144.         {
  145.                 fprintf(stderr, "Can't Open Serial Port: %s", Dev);
  146.                 return -1;
  147.         }
  148.         else
  149.         return fd;

  150. }


  151. int setcom(const char *comstr, int fd, int speed, int databits, int stopbits, int parity) //设置串口
  152. {
  153.         fd = OpenDev(comstr);
  154.         if (fd>;0)
  155.     set_speed(fd, speed);
  156.         else
  157.                 {
  158.                 printf("Can't Open Serial Port!\n");
  159.                 exit(0);
  160.                 }
  161.         if (set_Parity(fd,8,1,'N')== FALSE)
  162.         {
  163.                 printf("Set Parity Error\n");
  164.                 exit(1);
  165.         }
  166.         return fd;
  167. }
复制代码

论坛徽章:
0
4 [报告]
发表于 2004-12-23 09:40 |只看该作者

linux与windows串口通信发文件有问题?

我的设置基本上一样,只是在传大文件时,最后传的几K字节会接收不到!
串口是怎么处理缓存区满的情况的?
接收端若是没有收好,怎么通知发送端?

论坛徽章:
0
5 [报告]
发表于 2004-12-23 09:43 |只看该作者

linux与windows串口通信发文件有问题?

还有我如果设置RTX/CTX硬件流控制时,发送和接收会很慢,而且发送一次就停住了,这是怎么回事啊!
请大牛指点!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP