登录
首页 » Visual C++ » 99507959Modbus1.0

99507959Modbus1.0

于 2011-07-06 发布 文件大小:3143KB
0 304
下载积分: 1 下载次数: 143

代码说明:

  VC编写的串口调试软件,内含Modbus协议类 支持对Modbus通讯调试-VC prepared serial debugging software category includes Modbus protocol support for Modbus communications debugging

文件列表:

Modbus串口调试软件1.0
.....................\com
.....................\...\ComData.cpp,16120,2008-12-17
.....................\...\comdata.h,4663,2008-12-17
.....................\...\COM_SET_VALUE.cpp,797,2005-03-30
.....................\...\COM_SET_VALUE.h,760,2005-03-30
.....................\...\ConstVariant.h,950,2001-12-21
.....................\...\Crack.cpp,7501,2001-12-20
.....................\...\Crack.h,777,2001-12-20
.....................\...\FOData.cpp,10059,2005-05-10
.....................\...\FOData.h,1304,2005-05-09
.....................\...\MsgPSPWnd.cpp,28771,2006-10-19
.....................\...\MsgPSPWnd.h,5821,2005-12-16
.....................\...\Pjsecure.cpp,4030,2004-10-20
.....................\...\Pjsecure.h,755,2004-10-19
.....................\...\PlugPPBase.cpp,1440,2005-04-13
.....................\...\PlugPPBase.h,2776,2005-05-10
.....................\...\Protocal.cpp,2125,2006-10-19
.....................\...\Protocal.h,789,2006-10-19
.....................\...\RectLight.cpp,3820,2005-01-24
.....................\...\RectLight.h,1770,2005-01-21
.....................\...\RegisteCode.cpp,14930,2005-04-18
.....................\...\RegisteCode.h,1656,2005-04-18
.....................\...\SerialPort.cpp,20213,2008-12-18
.....................\...\serialport.h,3476,2008-12-17
.....................\...\SPData.cpp,449,2004-11-23
.....................\...\SPData.h,781,2004-12-27
.....................\...\UniButton.cpp,15327,2005-01-24
.....................\...\UniButton.h,5577,2005-01-24
.....................\ComData.cpp,16454,2006-09-28
.....................\ComData.h,4685,2008-12-17
.....................\ConfigDlg.cpp,3739,2008-12-17
.....................\ConfigDlg.h,1758,2008-12-17
.....................\DlgChar.cpp,7396,2008-12-22
.....................\DlgChar.h,1713,2008-12-17
.....................\DlgMain.cpp,24399,2008-12-22
.....................\DlgMain.h,3301,2008-12-22
.....................\DlgModbus.cpp,4232,2008-12-18
.....................\DlgModbus.h,1449,2006-10-19
.....................\DlgVerity.cpp,3279,2006-09-23
.....................\DlgVerity.h,1421,2006-09-23
.....................\EditEx.cpp,5171,2008-12-22
.....................\EditEx.h,1506,2008-12-22
.....................\EditMenu.cpp,2992,2008-12-22
.....................\EditMenu.h,1168,2000-12-20
.....................\MenuInit.cpp,3807,2000-12-20
.....................\MenuInit.h,951,2000-12-20
.....................\ModBus.cpp,66350,2006-10-20
.....................\ModBus.h,4837,2006-10-19
.....................\ModbusRTU.aps,48652,2008-12-22
.....................\ModbusRTU.clw,5470,2006-11-10
.....................\ModbusRTU.cpp,2095,2008-12-22
.....................\ModbusRTU.dsp,5463,2006-09-28
.....................\ModbusRTU.dsw,524,2006-09-16
.....................\ModbusRTU.exe,675840,2008-12-22
.....................\ModbusRTU.h,1357,2006-09-16
.....................\ModbusRTU.ncb,10284032,2008-12-22
.....................\ModbusRTU.opt,60928,2006-11-10
.....................\ModbusRTU.plg,1344,2006-10-20
.....................\ModbusRTU.rc,17557,2008-12-22
.....................\ModbusRTU.sln,882,2008-12-17
.....................\ModbusRTU.vcproj,12865,2008-12-22
.....................\ModbusRTU.vcproj.0673B919EACB49E.Administrator.user,1427,2008-12-22
.....................\ModbusRTU.vcproj.RH-WULINGYU.Administrator.user,1419,2008-12-22
.....................\ReadMe.txt,3633,2006-09-16
.....................\res
.....................\...\icon1.ico

.....................\...\ModbusRTU.rc2,401,2006-09-16
.....................\resource.h,3347,2008-12-22
.....................\StdAfx.cpp,211,2006-09-16
.....................\StdAfx.h,1054,2006-09-16
.....................\Subclass.cpp,7391,2008-12-17
.....................\Subclass.h,2031,2000-12-20
.....................\Verity.cpp,6401,2008-12-22
.....................\Verity.h,1028,2008-12-22

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • client-server
    多协议文件传输c/s网络应用设计与实现,程序用 TCP/UDP 两个协议模拟多协议服务器。首先服务器端要将两种协议的套接字创建好,并且监听 TCP 端口的连接。必要时使用select函数来进行多连接处理和非阻塞处理。而客户端直接可以按照发送的地址和端口号来进行通讯。 首先要运行服务器端,服务器会监听 TCP 端口。然后运行客户端,根据事先设定好的 IP和端口,就可以进行连接传输数据了。 程序实现的关键步骤: 以TCP协议为例 服务器端: 1.创建套接字;2.绑定端口;3.进入无穷的循环;4.接收请求;5.处理请求;6.应答。 客户端: 1.找到服务器的IP地址和协议的端口号;2.创建套接字;3.确定连接需要任意的,没有使用的端口号允许TCP去选择一个;4.将套接字和服务器连接;5.使用应用层协议和服务器交互;6.关闭连接。 (Multi-protocol file transfer c/s network application design and implementation of programs simulate multi-protocol server with TCP/UDP both protocols. First socket server to create a good two protocols, TCP port and listens for connections. If necessary, use the function to handle multiple connections and non-blocking treatment. And the client can follow directly address and port number to communicate. First run on the server side, the server listens on TCP port. Then run the client, according to pre-configured IP and port, you can connect the data transmission. The key step program implementation: In TCP protocol as an example Service-Terminal: 1. Create a socket 2 bound port 3 enter an infinite loop 4. receiving a request 5. processing requests 6 response. Clients: 1. Locate the server s IP address and protocol port number 2 creates a socket 3 connections need to determine arbitrary, unused port allows TCP to choose a 4 and the socket server connections 5 using appli)
    2016-07-11 10:19:07下载
    积分:1
  • 798567
    DAO数据库表字段操作演示VC++精选编程学习源码,很好的参考资料。(DAO database table field operation and demonstration of VC++ selected learning programming source code, a good reference.)
    2013-11-21 09:05:25下载
    积分:1
  • DL_HttpFtp_SDK_1.0
    量点1.0下载组件 用这个可以做下载软件
    2010-02-15 04:00:19下载
    积分:1
  • Fill_IEs
    IE自动填充,基本框架和功能,自己再去添加和修改吧--IE自动填充,基本框架和功能,自己再去添加和修改吧(IE Auto fill, the basic framework and functions, add and modify it yourself go)
    2011-11-16 16:02:21下载
    积分:1
  • GPS-application-program-code
    完整的gps应用程序,包括前端数据采集程序 读取星历程序、单点定位程序,差分定位程序、RTCM电文编码译码程序等(GPS application software)
    2015-11-03 16:26:17下载
    积分:1
  • querydef
    使用ODBC实现的一个动态RecordSet(Using ODBC to implement an dynamic recordset)
    2021-05-07 16:43:36下载
    积分:1
  • 最小二乘法
    通过c语言编程,实习最小二乘法的功能,求解运算(Through the C language programming, practice the least square method function)
    2017-10-27 11:12:05下载
    积分:1
  • hpcv-water-29-oct-2010
    OSG实例,shader编程,实现简单的小溪河流定向移动(OSG , shader programming, achieve a simple directional movement of rivers )
    2020-09-13 17:27:58下载
    积分:1
  • 24bitsTo8bits
    这是一个将24位位图转换为8位位图的算法程序,用 vc++写的内容通俗易懂,注释清晰。(This is a 24-bit bitmap is converted to 8-bit map algorithm, using vc++ to write the content easy to understand, clear notes.)
    2013-11-16 11:13:21下载
    积分:1
  • cdesignmodel
    设计模式 c++不仅将c++的语言特性展示出来 而且很巧妙的解释了设计模式的应用性(Design pattern c++ not only c++ language features displayed and explained a very clever application of design patterns)
    2010-07-03 16:51:42下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载