搜索资源列表
通讯簿(带有密码保护功能)
- 非常简单却实用的一款通讯簿,主要特色是支持密码保护功能,可以实现联系人信息的保密.希望大家多提宝贵意见. -very simple but practical new address book, the main character is supporting password protection function can be achieved Contact information confidential. We hope more valuable advice.
linux serial program demo
- linux下串口通讯源程序,可以作为两机通信-source program about serial communication in linux,and can used in communication between two terminals.
link_WTL
- 这是用WTL编写的界面程序, Debug中有一个查看内存的服务程序 会将查看得到的内存数据写进Debug目标下一个文本文件中 可以通过本程序实现与服务程序之间的通讯-This is WTL prepared by the interface procedures, Debug is a memory check service program will check data to be written into the memory Debug next target text fi
coputer
- 计算机与重量仪表通讯!稳定完善,可用于重量控制等相关行业-computer and communications instrumentation weight! Stability can be used for weight control and other related sectors
shoujichuankoutongxun
- 手机串口通讯程序,使用 AT 指令,可以同时控制多机-phone serial communication, the use of the AT command can control many machines
200699131011580
- 读写usb 上面的OpenDevice函数就是演示如何根据设备GUID打开一个USB接口的设备,和设备读写通讯的时候就需要了解设备的驱动到底都支持什么方式了。可以使用UsbView工具查看USB设备到底支持几个Endpoint,每个都以什么方式读写。 如果你的设备支持3个EndPoint,0号是控制的,1号是读,2号是写,那你直接读取0号Endpoint,搞不好就会发生重起的问题 -literacy usb above OpenDevice function is to demons
md5main
- 这个程序是MD5算法的C源代码,调试通过。可以直接应用,在网络通讯中有用。-the procedure is MD5 algorithm in C source code, debugging through. Can be directly applied in the network communications useful.
txp
- 非常简单却实用的一款通讯簿,主要特色是支持密码保护功能,可以实现联系人信息的保密.-very simple but practical one Address Book, the main feature is support password protection function, Contact information can achieve confidentiality.
jxt
- 基本功能高效的CAN通讯应用.同样,CAN232 不仅适应基本CAN-bus产品,也满足基于高层协议如ModBUS、DeviceNet...之间可选 3. RS232接口,波特率在1200bps -basic functions of CAN efficient communications applications. Similarly, the CAN232 not only meet the basic CAN-bus products, but also to meet for hig
can_demo_files.rar
- LABVIEW LabVIEW编写的实现简单CAN通讯的例子,对CAN口操作,错误处理,DLL函数接口等,LABVIEW LabVIEW implementation of easy to prepare examples of CAN communication on the CAN port operations, error handling, DLL function interface
SerialCom
- VC环境下实现串口通讯功能,能进行文本文件的传输-VC environment to achieve serial communication function, can be a text file transmission
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
peak-linux-driver.2.13.tar
- sja1000的PCI CAN通讯驱动适用于linux2.6内核-PCI CAN driver for Sja1000 in linux 2.6
CAN
- ADS环境下的CAN总线通讯代码 ADS环境下的CAN总线通讯代码-ADS environment CAN bus communication code in ADS environment CAN bus communication code
VB
- 一些vb6.0编写的例子,我在学习过程中感觉很有用,提供给大家包括,菜单操作,通讯,界面设置,颜色操作等-this program conclude lots of example of VB program,during my learnning ,i have learn more from it,so i want to share with others,i hope it can help others ,thank u!
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