-
这是在windows上使用modem通信的例子程序,有很高的实用价值,同时也可以学习到tapi的编程方法...
这是在windows上使用modem通信的例子程序,有很高的实用价值,同时也可以学习到tapi的编程方法-This is the windows on the use of the example of modem communications procedures with a high degree of practical value, they can also learn the programming methods TAPI
- 2023-08-18 10:00:03下载
- 积分:1
-
A queuing simulation and program design on paper, is designed to make their own...
一篇关于排队仿真与程序设计的论文,是自己做课程设计的时候收集的,感觉不错-A queuing simulation and program design on paper, is designed to make their own curriculum when the collection of feel good
- 2022-02-25 11:10:44下载
- 积分:1
-
the realization of 4dpsk&8dpsk by matlab tool.it use the Monte Carlo methods to...
4dpsk和8dpsk的matlab仿真实现,采用蒙特卡罗仿真法,绘制误码率曲线-the realization of 4dpsk&8dpsk by matlab tool.it use the Monte Carlo methods to draw the graph.
- 2022-06-28 23:23:07下载
- 积分:1
-
CDMA write code information! You read on to know! ! Write ENS yards on the infor...
CDMA的写码资料!你看了就知道的!!关于写ENS码的资料!~~还有解谜资料!~-CDMA write code information! You read on to know! ! Write ENS yards on the information! ~ ~ There Mystery information! ~
- 2022-05-21 19:03:42下载
- 积分:1
-
串口读写
串口读写 -Serial reading and writing
- 2022-11-09 07:05:04下载
- 积分:1
-
本文是一篇经典的基于离散余弦变化的信道估计论文,摘自IEEE的文章,对初学者有帮助。...
本文是一篇经典的基于离散余弦变化的信道估计论文,摘自IEEE的文章,对初学者有帮助。-This article is a classic change based on the discrete cosine channel estimation papers, taken from the IEEE article, for beginners helpful.
- 2022-12-08 06:40:03下载
- 积分:1
-
本书介绍的wcdma系统的基本原理:包括wcdma的系统结构,关键技术,数据传输基本技术,无线接口,基本信令流程,3G业务,实现等...
本书介绍的wcdma系统的基本原理:包括wcdma的系统结构,关键技术,数据传输基本技术,无线接口,基本信令流程,3G业务,实现等-The book described the basic principles of WCDMA systems: including WCDMA system architecture, key technologies, the basic data transmission technology, the wireless interface, the basic signaling flow, 3G business, realize, etc.
- 2022-02-05 21:08:24下载
- 积分:1
-
该文件是用于映射解码。你可以用matlab打开它。
The file is for MAP decoding. You can use matlab to open it.
- 2022-03-26 03:11:34下载
- 积分:1
-
Dialogic VFX传真卡编程,程序实现了在Windows Fax服务中注册Dialogic VFX传真的功能...
Dialogic VFX传真卡编程,程序实现了在Windows Fax服务中注册Dialogic VFX传真的功能-VFX Dialogic fax card program, a program in Windows Fax service registration VFX Dialogic fax function
- 2023-04-03 15:50:04下载
- 积分: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