免费注册 查看新帖 |

Chinaunix

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

为什么串口读出来的是乱码? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-22 10:02 |只看该作者 |倒序浏览

  1. #include <termios.h>
  2. #include <errno.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <sys/types.h>
  6. #include <sys/stat.h>
  7. #include <fcntl.h>

  8. int main()
  9. {
  10.     int ret;
  11.     int fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY);
  12.     if (-1 == fd)
  13.     {
  14.             perror("open serial port ttyS0 failed");
  15.         return -1;
  16.     }

  17.     struct termios options;
  18.     ret = tcgetattr(fd, &options);
  19.     if (0 != ret)
  20.     {
  21.             perror("tcgetattr failed");
  22.         close(fd);
  23.         return -1;
  24.     }
  25.     tcflush(fd, TCIOFLUSH);
  26.     cfsetispeed(&options, B115200);
  27.     cfsetospeed(&options, B115200);

  28.     options.c_cflag &= ~PARENB;
  29.     options.c_cflag &= ~CSTOPB;
  30.     options.c_cflag &= ~CSIZE;
  31.     options.c_cflag |= CS8;
  32.     options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
  33.     options.c_oflag &= ~OPOST;

  34.     ret = tcsetattr(fd, TCSANOW, &options);
  35.     if (0 != ret)
  36.     {
  37.             perror("tcsetattr failed");
  38.         close(fd);
  39.         return -1;
  40.     }
  41.     tcflush(fd, TCIOFLUSH);

  42.     sleep(3);

  43.     char buf[] = "server";
  44.     ret = write(fd, buf, sizeof(buf));
  45.     if (ret != sizeof(buf))
  46.         {
  47.                 perror(strerror(errno));
  48.         }

  49.     sleep(3);
  50.     close(fd);

  51.     return 0;
  52. }
复制代码



  1. #include <termios.h>
  2. #include <errno.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <sys/types.h>
  6. #include <sys/stat.h>
  7. #include <fcntl.h>

  8. int main()
  9. {
  10.     int ret;
  11.     int fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY);
  12.     if (-1 == fd)
  13.     {
  14.             perror("open serial port ttyS0 failed");
  15.         return -1;
  16.     }

  17.     struct termios options;
  18.     ret = tcgetattr(fd, &options);
  19.     if (0 != ret)
  20.     {
  21.             perror("tcgetattr failed");
  22.         close(fd);
  23.         return -1;
  24.     }
  25.     tcflush(fd, TCIOFLUSH);
  26.     cfsetispeed(&options, B115200);
  27.     cfsetospeed(&options, B115200);

  28.     options.c_cflag &= ~PARENB;
  29.     options.c_cflag &= ~CSTOPB;
  30.     options.c_cflag &= ~CSIZE;
  31.     options.c_cflag |= CS8;
  32.     options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
  33.     options.c_oflag &= ~OPOST;

  34.     ret = tcsetattr(fd, TCSANOW, &options);
  35.     if (0 != ret)
  36.     {
  37.             perror("tcsetattr failed");
  38.         close(fd);
  39.         return -1;
  40.     }
  41.     tcflush(fd, TCIOFLUSH);

  42.     sleep(3);

  43.     char buf[20] = "";
  44.     ret = read(fd, buf, 6);
  45.     if (ret < 0)
  46.         {
  47.                 perror(strerror(errno));
  48.         }
  49.     sleep(3);
  50.     close(fd);

  51.         printf("Len = %d, buf = %s\n", ret, buf);

  52.     return 0;
  53. }
复制代码



为什么我读出来的都是乱码呢?我用gdb跟,收的那方buf里面的数据也不对。

我用
server: cat /dev/ttyS0
client: echo test > /dev/ttyS0
显示出来的也是乱码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP