摘要: 1.. 设计目的设计一个串口程序,该程序执行时,具有通信参数选择及串口收发数据功能,界面友好。2 设计流程图及说明 如图1.1所示,程序运行后,首先进入功能选择,共4中功能可供选择,分别为接收数据,发送数据,接收文件,发送文件。根据提示,键入不同的数字,可以进入不同的功能。设置完毕,进入参数设置,可以保持默认参数,也可以设置用户参数,若设置有误,还可以对参数重新设置。参数设置确认后,打开串口。若串口打开无误,则根据用户的选择进入不同的功能。图1.1 总体设计流程图3 设计测试3.1 测试环境及步骤测试环境:VMware WorkStation 6.0.2+Fedora 10+minicom+广 阅读全文
posted @ 2011-09-23 20:23 j2ee技术 阅读(240) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <sys/types.h>#include <fcntl.h>#include <time.h>#include <errno.h>int main(void){int fd,retval;char buf[6];fd_set readfds,tmp_readfds;struct timeval tv;if((fd=open("/dev/input/mice",O 阅读全文
posted @ 2011-09-23 19:56 j2ee技术 阅读(151) 评论(0) 推荐(0) 编辑
摘要: /********************************************************** * This program is use to copy src_file to dest_file * 1 Execute gcc -o copy copy.c * 2 then, copy the execute file "copy" to the /usr/bin * You can use command like this : copy src_file dest_file * Author : Tan De * Time : 2011-04 阅读全文
posted @ 2011-09-23 19:52 j2ee技术 阅读(167) 评论(0) 推荐(0) 编辑