-
Delphi和C Builder的控件,在WINDOWS 95/98和WINDOWS NT/2000下提供串口通讯。可以与MODEM或其它与串口相连的设备进行通...
Delphi和C Builder的控件,在WINDOWS 95/98和WINDOWS NT/2000下提供串口通讯。可以与MODEM或其它与串口相连的设备进行通讯。通过多线程和覆盖来获得最佳性能。功能部分受限制。-Delphi and C Builder s control, in the WINDOWS 95/98 and WINDOWS NT/2000 provide serial communication. With MODEM or other connected with the serial communications equipment. Through multi-threaded and coverage to get the best performance. Features some restricted.
- 2022-03-24 07:43:15下载
- 积分:1
-
克隆选择
Clonal Selection-Theory-and-CLONALG-The-Clonal-Selection-Classification-Algorithm
- 2023-03-13 02:15:03下载
- 积分:1
-
无线网络资料
无线网络资料-wireless network information
- 2023-08-11 12:30:03下载
- 积分:1
-
设载波频率为20Hz,信息速率为2Baud,用MatLab画出QPSK信号波形。
设载波频率为20Hz,信息速率为2Baud,用MatLab画出QPSK信号波形。-Carrier frequency set to 20Hz, the information rate of 2Baud, using MatLab draw QPSK signal waveform.
- 2022-02-15 01:51:47下载
- 积分:1
-
Intercom 是一个 Unix系统上灵活的语音传输软件。支持标准音频压缩比如GSM, G.711, and G.72x和其他音频编码。Intercom专为高...
Intercom 是一个 Unix系统上灵活的语音传输软件。支持标准音频压缩比如GSM, G.711, and G.72x和其他音频编码。Intercom专为高速网络设计来传输高品质的语音,也支持窄带传输。-Intercom is a Unix system flexible voice transmission software. Support audio compression standards such as GSM, G.711, and G.72x and other audio coding. Intercom specifically designed for high-speed network to deliver high-quality voice, also support narrowband transmission.
- 2022-03-12 15:20:24下载
- 积分:1
-
C++ cheksum
应用背景关键技术一些制造商(和软件开发商……)不要担心太多,当谈到在NMEA句子校验。这可能是可能的原因:使用校验和算法是不是一个非常可靠的检测传输错误或无效的接收数据的方法在NMEA协议定义的要求在一个无效的校验和的情况下,重传没有标准的方法仪器发射连续的句子和数据通常是刷新每一秒或更快的让你得到一个转发,无论如何,虽然略有修改数据的过程然而,因为它比所有的验证方法,我推荐总是发送一个有效的校验和并经常检查收到的校验和有效的句子。计算校验和是很容易的。它是在–但不包括–$,*字符之间的句子的所有字符异或两进制字符的表示。
- 2023-05-09 17:20:03下载
- 积分:1
-
用于GPRS无线通讯的TCP/IP程序,能支持100个远程测控终端。
用于GPRS无线通讯的TCP/IP程序,能支持100个远程测控终端。-GPRS wireless communications for the TCP/IP procedures, can support 100 Remote Terminal.
- 2022-05-07 22:57:15下载
- 积分:1
-
unix环境下高级变成文档,内容很详尽,还有相应的实例
unix环境下高级变成文档,内容很详尽,还有相应的实例-senior unix environment into documentation, as detailed, and the corresponding example
- 2022-08-17 22:08:40下载
- 积分:1
-
可以控制计算机串口操作的串口类,非常好用
可以控制计算机串口操作的串口类,非常好用-can control the operation of the computer serial port Serial category, very handy
- 2022-02-28 10:43:20下载
- 积分: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