-
Chinese version of the GNU GK detailed user manual can be used according to the...
中文版的详细的GNU GK使用手册,根据说明可以用开源的GNU确良GK与我上传另两个工程实现一个完整的VOIP服务端系统-Chinese version of the GNU GK detailed user manual can be used according to the notes of the open-source GNU GK really good and I upload the other two works to achieve a complete VoIP service midrange systems
- 2022-06-03 09:55:57下载
- 积分:1
-
Contains a wide range of network design, network designers is invaluable informa...
包含有多种网络设计方案,是网络设计师初学者不可多得的资料-Contains a wide range of network design, network designers is invaluable information for beginners
- 2023-01-07 14:15:03下载
- 积分:1
-
几个串行通讯例子mscommdemo.rar serialport.zip smstest.rar com_source.rar ComAccess.zip c...
几个串行通讯例子mscommdemo.rar serialport.zip smstest.rar com_source.rar ComAccess.zip comcool_code.zip commtest.rar-A few examples of serial communication mscommdemo.rar serialport.zip smstest.rar com_source.rar ComAccess.zip comcool_code.zip commtest.rar
- 2022-03-09 21:29:29下载
- 积分:1
-
GEP
基于GEP的无线传感器网络的目标定位算法-GEP-based wireless sensor networks targeting algorithm
- 2022-07-23 23:12:24下载
- 积分:1
-
无线传感器网络模型
这是的 LAR 与路由选择协议的 routingSeveral 的 50nodes 方案程序已提出为 ad hoc 网络。本文提出的办法利用位置信息 (例如,获得使用全球定位系统) 来提高 ad hoc 网络的路由协议的性能。通过使用位置信息,拟议的 Location-Aided 路由 (LAR) 协议限制搜索的一个小"请求区"的 ad hoc 网络的新途径。这将导致在路由邮件的数量大为减少。我们目前两种算法来确定请求区,和也建议潜在的优化我们的算法。
- 2022-07-27 00:30:19下载
- 积分:1
-
运用群操作进行多用户检测,matlab程序
运用群操作进行多用户检测,matlab程序-The use of group operation multi-user detection, matlab program
- 2022-01-21 21:24:09下载
- 积分:1
-
can总线通信VB6源程序。用于编写can通信协议,以及测试can总线。...
can总线通信VB6源程序。用于编写can通信协议,以及测试can总线。-can bus communication VB6 source. Can prepare for the communication protocol and can test bus.
- 2022-08-02 20:33:31下载
- 积分:1
-
on the Implementation of Matlab MSK modulation and demodulation of ppt coursewar...
关于matlab实现MSK调制解调的ppt课件,用于教学、实验等-on the Implementation of Matlab MSK modulation and demodulation of ppt courseware for teaching experiment
- 2022-04-28 16:04:18下载
- 积分:1
-
串口编程 或许很多人人都用的到 呵呵~共享啦
串口编程 或许很多人人都用的到 呵呵~共享啦-directio
- 2022-05-16 02:47:35下载
- 积分: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