-
VisualC++通信编程工程实例精解
Chapter 2
Example 1 MSCOMM控件编程实例
Example 2 基于Windows...
VisualC++通信编程工程实例精解
Chapter 2
Example 1 MSCOMM控件编程实例
Example 2 基于Windows API的虚拟终端实现
Example 3 基于CSerialPort的串口多线程通信框架
调试工具串口调试助手-VisualC Communication Programming examples of precision engineering solutions Chapter 2 Example 1 M SCOMM control programming examples Example 2 based on the Windows API Virtual Terminal Example 3 CSerialPort based on the multithreaded Serial Communication Framework Debugging Tools Serial transfer Ban Help
- 2022-03-29 19:17:41下载
- 积分:1
-
使用VB的OPC客户访问的最简单程序,本程序为查找服务器、组、项目的列表程序,同步访问程序请找ASync...
使用VB的OPC客户访问的最简单程序,本程序为查找服务器、组、项目的列表程序,同步访问程序请找ASync-VB.rar,需要异步的查找ASync-VB.rar-The use of VB
- 2023-06-19 10:45:03下载
- 积分:1
-
分组滤波器的C语言源码,用定点算法实现,可用来做数字滤波处理。...
分组滤波器的C语言源码,用定点算法实现,可用来做数字滤波处理。-Packet Filter C language source code, using fixed-point algorithm can be used for digital filtering processing.
- 2022-08-16 11:28:11下载
- 积分:1
-
viterbi constraint length 7 of the simulation, applicable to DAB decoding such a...
viterbi 约束长度为7的仿真,适用于DAB等卷积编码译码的仿真-viterbi constraint length 7 of the simulation, applicable to DAB decoding such as convolutional coding simulation
- 2022-03-18 23:00:16下载
- 积分:1
-
手机通讯机制程序
手机通讯机制程序-mobile communications mechanism procedures
- 2022-08-21 14:14:12下载
- 积分:1
-
一个简单的tcp传输的例子
一个简单的tcp传输的例子-a simple example tcp transmission
- 2023-05-14 02:55:04下载
- 积分:1
-
OPNET LAB 1579
Understanding WiMAX Model Internals
and Interfaces
OPNET LAB 1579
Understanding WiMAX Model Internals
and Interfaces
- 2022-03-16 17:38:15下载
- 积分:1
-
第三代移动通信系统,通信协议.WCDMA系统.
第三代移动通信系统,通信协议.WCDMA系统.-Third-generation mobile communication systems, communication protocols. WCDMA system.
- 2022-01-25 18:38:13下载
- 积分:1
-
modbusrtu/tcp 协议
需要为 modbus 协议 connection.good 代码和示例的源代码。需要 modbus 协议 connection.good 代码和示例的源代码。需要 modbus 协议 connection.good 代码和示例的源代码。需要 modbus 协议 connection.good 代码和示例的源代码。需要为 modbus 协议 connection.good 代码和示例源代码
- 2022-07-10 11:30:17下载
- 积分:1
-
c# plc modibus 通信
c# 串口 以太网通信 modibus 连接 plc
从文本框输入负数 -2 补码=反+1=进位+原数
Vb 清除输入缓冲区 输出缓冲区 c#用不用清除??哪个函数??
//發送二進制數據 ??????????????
private void SendBytesData(SerialPort serialPort)
{ ////从 文本框取得数据 如果负数 -2 怎么办????
byte[] bytesSend = Encoding.Default.GetBytes(txtSend.Text);
spcom.Write(bytesSend, 0, bytesSend.Length);
}
通过MODBUS TCP读写PLC源码
功能模块一:读写PLC主模块
using System;
using System.Net;
using System.Net.Sockets;
public static void WriteWord(int mwAddress,int mwValue)
{写字到以太网
if (init_plc() == 0)
{
try
{
hi = mwAddress / 256;
low = mwAddress - hi * 256;
hi1 = mwValue / 256; ///////////16bit
low1 = mwValue - hi * 256;
sendBuf[7] = 6;
sendBuf[8] = (byte)hi;
sendBuf[9] = (byte)low;
sendBuf[10]
- 2022-07-10 15:42:30下载
- 积分:1