免费注册 查看新帖 |

Chinaunix

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

串口0接收数据问题求助!!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-21 15:44 |只看该作者 |倒序浏览
最近研究w90p710串口通讯,看了下手册,发现有四个串口可以用,我选择了UART0来进行数据传输。telnetd到开发板上,进行操作,没有采用终端控制。
发送程序:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>  
#include <errno.h>
#include <string.h>

int main()
{
        int fd;
        int nwrite;
        struct termios oldtio,newtio;
        char buff[]="hello world";
        if((fd = open("/dev/ttyS0", O_RDWR|O_NOCTTY)) == -1)
        {
                perror("open");
                return -1;
        }
        printf("fd = %d\n",fd);
       
        tcgetattr(fd, &oldtio);
        cfsetispeed(&oldtio, B115200);
        cfsetospeed(&oldtio, B115200);
       
        bzero(&newtio, sizeof(newtio));
       
        newtio.c_cflag |= CS8;
        newtio.c_cflag &=~PARENB;
        newtio.c_iflag &=~INPCK;
        newtio.c_cflag &=~CSTOPB;
       
        newtio.c_cc[VTIME]=1;
        newtio.c_cc[VMIN]=0;
       
        tcflush(fd,TCIFLUSH);
        tcsetattr(fd,TCSANOW, &newtio);
        tcsetattr(fd, TCSANOW, &oldtio);

/*向串口写数据*/
        if((nwrite = write(fd,buff,sizeof(buff))) == -1)
        {
                perror("read");
                exit(EXIT_FAILURE);
        }

        //printf("%s\n",buff);
        return 0;
}
运行以后的结果是 fd = 3 然后等待

接收程序

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>  
#include <errno.h>
#include <string.h>

int main()
{
        int fd;
        int nread;
        struct termios oldtio,newtio;
        char buff[16];
        if((fd = open("/dev/ttyS0", O_RDWR|O_NOCTTY)) == -1)
        {
                perror("open");
                return -1;
        }
        printf("fd = %d\n",fd);
       
        tcgetattr(fd, &oldtio);
        cfsetispeed(&oldtio, B115200);
        cfsetospeed(&oldtio, B115200);
       
        bzero(&newtio, sizeof(newtio));
       
        newtio.c_cflag |= CS8;
        newtio.c_cflag &=~PARENB;
        newtio.c_iflag &=~INPCK;
        newtio.c_cflag &=~CSTOPB;
       
        newtio.c_cc[VTIME]=1;
        newtio.c_cc[VMIN]=0;
       
        tcflush(fd,TCIFLUSH);
        tcsetattr(fd,TCSANOW, &newtio);
        tcsetattr(fd, TCSANOW, &oldtio);

/*向串口读数据*/
        if((nread = read(fd,buff,sizeof(buff))) == -1)
        {
                perror("read");
                exit(EXIT_FAILURE);
        }

        printf("%s\n",buff);
        return 0;
}

运行后的结果 fd = 3 一直等待。

当我选择终端控制时,接收端运行后的结果是fd = 4,能打印发送端的发送过来的数据。

请问大虾,在不开启终端的情况下应该怎样修改程序,才能输出发送端传来的字符呢?

论坛徽章:
0
2 [报告]
发表于 2009-09-21 16:37 |只看该作者
大虾帮忙看看这个代码吧,实在很急,在此谢谢了

论坛徽章:
0
3 [报告]
发表于 2009-09-21 20:16 |只看该作者
printf默认输出到标准输出上。
如果你不开始终端那你要在哪显示呢?
你可以用sprintf输出到文件

论坛徽章:
8
2015年辞旧岁徽章
日期:2015-03-03 16:54:15午马
日期:2015-02-04 12:00:07羊年新春福章
日期:2015-02-04 11:57:56双子座
日期:2014-12-02 11:44:59金牛座
日期:2014-10-08 16:47:08狮子座
日期:2014-08-29 13:37:46巳蛇
日期:2014-08-26 17:32:29NBA常规赛纪念章
日期:2015-05-04 22:32:03
4 [报告]
发表于 2009-09-30 11:58 |只看该作者

回复 #1 cuixingasd 的帖子

重定向你的输出到新的文件

论坛徽章:
0
5 [报告]
发表于 2009-10-06 20:51 |只看该作者

回复 #1 cuixingasd 的帖子

换个串口试试
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP