免费注册 查看新帖 |

Chinaunix

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

[C] linux下向串口发送数据并接受 [复制链接]

论坛徽章:
1
申猴
日期:2013-09-03 17:48:13
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-04 22:15 |只看该作者 |倒序浏览
小弟写了段程序用于向本机的/dev/ttyUSB0串口发送数据,开了两个线程,因为不可能写两个程序分别读这个串口,分别用于向串口write与read。
  1. #include <stdio.h>
  2. #include <pthread.h>
  3. #include <unistd.h>//read,write
  4. #include <fcntl.h>//open
  5. #include <stdlib.h>
  6. #include <string.h>

  7. #define MAX_LINE 1000

  8. void serial_send(int fd){
  9.         char *buf = "hello";
  10.         int n, len;


  11.     len = strlen(buf);
  12.         if( (n=write(fd, buf, len)) == -1 )
  13.     {
  14.         perror("write error!");
  15.         pthread_exit(NULL);
  16.     }
  17.     printf("n is %d\nlen is %d\n", n, len);
  18.     /*
  19.         if(n == len)
  20.                 printf("write success!\n");
  21.         else
  22.                 printf("write faild!\n");
  23.         pthread_exit(NULL);
  24.     */
  25. }

  26. void serial_recv(int fd){
  27.         static char buf[MAX_LINE];
  28.         int n;


  29.     while(1)
  30.     {
  31.             n = read(fd, buf, MAX_LINE);
  32.             if(n>0)
  33.             {
  34.                     printf("serial have read:%s\n", buf);
  35.                     pthread_exit(NULL);
  36.             }
  37.         else
  38.         {
  39.             printf("have not read from ttyUSB0\n");
  40.             pthread_exit(NULL);
  41.         }
  42.     }
  43. }

  44. void main(){
  45.         int fd,err_send, err_recv;
  46.         pthread_t send, recv;

  47.     if( (fd = open("/dev/ttyUSB0", O_RDWR)) == -1)
  48.         {
  49.                 printf("open error!\n");
  50.                 exit(1);
  51.         }

  52.     err_send = pthread_create(&send, NULL, serial_send, &fd);
  53.         if(err_send != 0)
  54.                 printf("pthread_creat_send error!\n");

  55.         err_recv = pthread_create(&recv, NULL, serial_recv, &fd);
  56.         if(err_recv != 0)
  57.                 printf("pthread_creat_recv error\n");

  58.         pthread_join(send, NULL);
  59.         pthread_join(recv, NULL);
  60. }
复制代码
主要有两个问题,首先在我编译的时候提示:warning: passing argument 3 of ‘pthread_create’ from incompatible pointer type
这个应该是我线程开始地址的函数声明写的不对

第二个问题是,当我运行程序后打印:write error!: Bad file descriptor。 网上查了下可能是我对文件没有写的权限,但是我在open函数中已经加了O_RDWR了啊,这是为什么呢?是不是我才线程开始的地方传递的文件描述符不对呢?

还有,我这段代码写的不咋样,用这种模式的write与read是不是有问题呢?

论坛徽章:
0
2 [报告]
发表于 2013-09-05 14:49 |只看该作者
仔细检查你创建线程是传进的最后一个参数,pthread_create(&send, NULL, serial_send, &fd);
你传进取得是&fd,是地址,但是在serial_send和serial_recv中直接把它档fd使用,显然不对。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP