搜索资源列表
linux serial program demo
- linux下串口通讯源程序,可以作为两机通信-source program about serial communication in linux,and can used in communication between two terminals.
UCOSIIkernalschedinganalysis
- 多任务系统中,内核负责管理各个任务,或者说为每个任务分配CPU时间,并且负责任务之间的通讯。内核提供的基本服务 以使用实时内核可以大大简化应用系统的设计,是因为实时内核允许将应用分成若干个任务,由实时内核来管理它们。内核 用程序的额外负荷,代码空间增加ROM的用量,内核本身的数据结构增加了RAM的用量。但更主要的是,每个任务要有自己的 吃起内存来是相当厉害的。内核本身对CPU的占用时间一般在2到5个百分点之间。 UC/OS-II有一个精巧的内核调度算法,实时内核精小,执行效率高,
Linux_Kernel_CN(1)
- 本书并不是特意一本Linux 的内部手册相反它是对操作系统的介绍同时以Linux作为示例书中每一章遵循从共性到特性的原则它们将首先给出核心子系统的概叙然后进行尽可能的详细描叙 我不会用routine_X()调用routine_Y()来增加bar 数据结构中foo 域的值这种方式来描叙核心算法 你自己可以通过阅读代码发现它每当需要理解一段代码时我总是将其数据结构画出来这样我发现了许多相关的核心数据结构以及它们之间的关系 每一章都是非常独立的就象Linux 核心子系统一样当然有时它们还是有联系的比如
ThreadCOM.rar
- 可用于QT多线程串口通讯,用在ARM程序上面,在QT2.3.7下调试成功,QT can be used for multi-threaded serial communications, ARM used in the above procedure, the success in debugging QT2.3.7
cnc
- 一个使用RTLinux开发的数控系统实时模块,可以通过与Qt编写的数控系统界面通过通讯实现一般的数控加工!-The development of a numerical control system using RTLinux real-time module, can be written with the Qt interface for CNC system through communication to achieve a general CNC machining!
udpsocket
- linux下c语言的udp通讯小代码。。。不到1k,上去不了,日!加个md5的代码在里面,可以无视-c under linux language small code udp communication. . . Less than 1k, can not go, Japan! Md5 add the code inside, you can ignore the
CAN
- linux对sja100t,can总线操作及can简单通讯程序,linux对sja100t,can总线操作及can简单通讯程序-linux on sja100t, can-bus operation and can a simple communication program, linux on sja100t, can-bus operation and can a simple communication program
double_pipe
- 这是一个linux下的双管道,可以实现linux下管道通讯-This is a dual pipeline under linux, linux can be achieved under the pipeline communications
gkermit-1.0-1.src
- 红帽版linux下串口通讯kermit文件传输协议简单版源码.想学习kermit的可以看看,里面关于状态机用的比较精彩.先解压成rpm,再在linux下解压.-Red Hat linux version of serial communication under the kermit file transfer protocol simple version of source code. Want to learn kermit can take a look at, which on the
Win32
- linux下的多个网络通讯的例子 可多参考下-linux under the example of a number of network communications can refer to the following
roadtest
- 自己开发的移动信号路测设备软件,再linux下运行,3年前开发的程序,带多进程之间的通讯,需要的可以下载了-Developed their own mobile device software test signal path, and then run under linux, 3 years ago, the development of procedures, with multi-process communication between the need can be download
serial
- 通讯接口类的封装,适用于C/C++,为了通用性,用标准C封装,稍作修改可封装成类,简单好用-Communication interface of the package type for C/C++, for general use standard C package, with some slight modifications can be packaged into a class, easy-to-use
peak-linux-driver.2.13.tar
- sja1000的PCI CAN通讯驱动适用于linux2.6内核-PCI CAN driver for Sja1000 in linux 2.6
eac5
- 基于LINUX环境的电能量采集系统的通讯程序,可以直接从设备采集数据至后台软件。-LINUX-based environment, electric energy collection system of the communication procedures, you can collect data directly from the device to the back-office software.
CAN
- ADS环境下的CAN总线通讯代码 ADS环境下的CAN总线通讯代码-ADS environment CAN bus communication code in ADS environment CAN bus communication code
canq
- pc104总线的CAN通讯卡的linux驱动程序-pc104 CAN card
can_socket
- unix下can通讯套接字的应用开发,包括服务端和客户端。-Unix can communication socket application development, including server and client.
udp通讯实现
- Linux UDP 通讯实例,可直接使用(Linux UDP communication examples, can be used directly)
Get-Serial-Modbus
- 标准的MODBUS通讯协议的Linux C++实现,支持所有的标准和非标准的制造商Modbus协议的数据采集,数据的字节数,函数代码,高低位置可配置。(Standard MODBUS communication protocol Linux C++ implementation, supporting all standard and non-standard manufacturers MODBUS protocol data collection, data byte number, fun
linux进程之间的通讯综合实例
- A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C