- 论坛徽章:
- 1
|
小弟写了段程序用于向本机的/dev/ttyUSB0串口发送数据,开了两个线程,因为不可能写两个程序分别读这个串口,分别用于向串口write与read。- #include <stdio.h>
- #include <pthread.h>
- #include <unistd.h>//read,write
- #include <fcntl.h>//open
- #include <stdlib.h>
- #include <string.h>
- #define MAX_LINE 1000
- void serial_send(int fd){
- char *buf = "hello";
- int n, len;
- len = strlen(buf);
- if( (n=write(fd, buf, len)) == -1 )
- {
- perror("write error!");
- pthread_exit(NULL);
- }
- printf("n is %d\nlen is %d\n", n, len);
- /*
- if(n == len)
- printf("write success!\n");
- else
- printf("write faild!\n");
- pthread_exit(NULL);
- */
- }
- void serial_recv(int fd){
- static char buf[MAX_LINE];
- int n;
- while(1)
- {
- n = read(fd, buf, MAX_LINE);
- if(n>0)
- {
- printf("serial have read:%s\n", buf);
- pthread_exit(NULL);
- }
- else
- {
- printf("have not read from ttyUSB0\n");
- pthread_exit(NULL);
- }
- }
- }
- void main(){
- int fd,err_send, err_recv;
- pthread_t send, recv;
- if( (fd = open("/dev/ttyUSB0", O_RDWR)) == -1)
- {
- printf("open error!\n");
- exit(1);
- }
- err_send = pthread_create(&send, NULL, serial_send, &fd);
- if(err_send != 0)
- printf("pthread_creat_send error!\n");
- err_recv = pthread_create(&recv, NULL, serial_recv, &fd);
- if(err_recv != 0)
- printf("pthread_creat_recv error\n");
- pthread_join(send, NULL);
- pthread_join(recv, NULL);
- }
复制代码 主要有两个问题,首先在我编译的时候提示:warning: passing argument 3 of ‘pthread_create’ from incompatible pointer type
这个应该是我线程开始地址的函数声明写的不对
第二个问题是,当我运行程序后打印:write error!: Bad file descriptor。 网上查了下可能是我对文件没有写的权限,但是我在open函数中已经加了O_RDWR了啊,这是为什么呢?是不是我才线程开始的地方传递的文件描述符不对呢?
还有,我这段代码写的不咋样,用这种模式的write与read是不是有问题呢? |
|