请教串口编程,怎么会出现这种情况
//readtest1.c
#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <termios.h>
#include <errno.h>
#include <math.h>
#include "/home/prog2/stru.h"
int spfd;
int main()
{
char fname[16],hd[4],*rbuf;
PROTCOL pro;
int retv,i,ncount=0;
struct termios oldtio;
int realdata=0;
//spfd=open("/dev/ttyS0",O_RDWR|O_NOCTTY|O_NONBLOCK);
spfd=open("/dev/ttyS0",O_RDWR|O_NOCTTY);
if(spfd<0)
{
perror("open/dev/ttyS0");
return -1;
}
printf("spfd%d\n",spfd);
tcgetattr(spfd,&oldtio);
cfmakeraw(&oldtio);
cfsetispeed(&oldtio,B57600);
cfsetospeed(&oldtio,B57600);
tcsetattr(spfd,TCSANOW,&oldtio);
printf("ready for receiving data...\n");
retv=read(spfd,hd,4);
if(retv==-1)
{
perror("read");
return -1;
}
for(i=0;i<4;i++)
printf("%c\n",hd);
close(spfd);
return 0;
}
//writetest1.c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <termios.h>
#include <errno.h>
#include <math.h>
int spfd;
int main()
{
char fname[16],*sbuf;
int retv,i,ncount=0;
struct termios oldtio;
int realdata=0;
spfd=open("/dev/ttyS0",O_RDWR|O_NOCTTY);
if(spfd<0)
{
perror("open/dev/ttyS0");
return -1;
}
tcgetattr(spfd,&oldtio);
cfmakeraw(&oldtio);
cfsetispeed(&oldtio,B57600);
cfsetospeed(&oldtio,B57600);
tcsetattr(spfd,TCSANOW,&oldtio);
printf("ready for sending data...\n");
fname[0]='1';
fname[1]='2';
fname[2]='3';
fname[3]='\n';
retv=write(spfd,fname,4);
if(retv==-1)
perror("write");
printf("the number sent is %d\n",retv);
close(spfd);
return 0;
}
我是在arm上放readtest1.c, 在主机放writetest1.c,这样writetest1.c能读取readtest1.c发来的数据,
但是,在arm上放writetest1.c, 在主机放writetest1.c,这样readtest1.c第一不能读取writetest1.c发来的数据,
主机上:./readtest1
arm:要执行两次./writetest
主机上才能显示arm发来的数据(printf);
不知为什么?希望指点一二
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www-128.ibm.com/developer ... -serials/index.html
参考一下