资源简介
利用select函数,实现了从terminal端输入数据,然后输出到指定的文件中,适合新手,如果有什么问题,欢迎在下面评论。
代码片段和文件信息
/*************************************************************************
> File Name: keyboard.c
> Author: Crazycuo
> Mail: 740094202@qq.com
> Created Time: 2014年09月20日 星期六 09时34分34秒
************************************************************************/
#include
#include
#include
#include
#include
#include
#include
#define MAXSIZE 100
int main(void)
{
int keyboard;
int file;
int maxfd;
int reti;
char buff[MAXSIZE];
fd_set readfd;
fd_set writefd;
struct timeval timeout;
keyboard=open(“/dev/tty“O_RDONLY|O_NONBLOCK);
file=open(“/home/crazy/test.txt“O_WRONLY|O_NONBLOCK);
maxfd=keyboard>file?keyboard:file;
maxfd++;
assert(file>0);
assert(keyboard>0);
assert(file>0);
while(1)
{
timeout.tv_sec=3;
timeout.tv_usec=0;
FD_ZE
相关资源
- Qt从零开始制作串口调试助手源代码(
- Lua中调用C函数
- wince下IImage组件显示图片(wince)
- DS18b20在STC12C5A60S2上的移植
- STM32 FM25CL64B 铁电存储器
- 基于IAR的STM8L152的USART+ADC(双通道)带
- Linux mpu6050驱动程序
- linux 配置文件读写C
- dcraw 1.477
- 一个按钮搞定excel文件上传和导入[完
- L298控制直流电机加减速的89c51单片机
- 自动聚焦源程序(基于openCV)
- 基于winpcap协议分析器源代码
- 利用windows api采集麦克风音频并播放
- PT6523和PT6524 LCD驱动芯片驱动程序
- Qt播放PCM音频裸流文件
- 读取STC单片机ID号,用CRC-ITU算法加密
- linux0.11内核源码
- QT+OpenCV+USB摄像头
- Qt+Tcp+udp调试工具
- 多尺度的KCF算法代码
- CustomPlotTest.zip
- 蜂鸣器播放音乐-小星星亮晶晶.rar
- 5965c34d001a3b28728a3619d45acd5c.zip
- Computer Networking: A Top Down Approach 5th e
- Computer Networking: A Top Down Approach 5th e
- Computer Networking: A Top Down Approach 5th e
- modbus串口通讯程序,源程序
- iec104 从站模拟程序
- license for ansys 14.5
评论
共有 条评论