-
am demodulation process, Matlab
am的解调程序,基于matlab的通信系统仿真系列。供刚接触到matlab的朋友使用-am demodulation process, Matlab-based communications system simulation series. For begin to friends using Matlab
- 2022-07-11 21:06:48下载
- 积分:1
-
coloredit源代码,实现关键词彩色显示
ColorEdit源程序代码,实现关键字的色彩显示-ColorEdit source code, achieving keyword color display
- 2022-09-24 02:50:03下载
- 积分:1
-
J2ME 无线开发代码下载
J2ME 无线开发代码下载 -J2ME wireless download code
- 2022-09-18 11:55:03下载
- 积分:1
-
dsp application and program methodology to evaluate and pratice dsp code
dsp application and program methodology to evaluate and pratice dsp code
- 2022-04-13 12:39:10下载
- 积分:1
-
用vb编写的能管理自己日程计划的程序。后台用access数据库,非常不错的。...
用vb编写的能管理自己日程计划的程序。后台用access数据库,非常不错的。-with vb prepared to manage their own schedules procedures. Background database with access, very good.
- 2023-05-25 11:25:02下载
- 积分:1
-
基于verilog的HDB3编码器的实现
基于verilog的HDB3编码器的实现-Based on the HDB3 encoder verilog implementation
- 2022-08-14 11:30:46下载
- 积分:1
-
采用Log
采用Log-BP算法的LDPC码译码仿真程序,给出了不同信噪比下误码率和误包率的统计图,用matlab和C(c-mex)程序分别编写,有详细说明和注释。-The use of Log-BP decoding algorithm for LDPC code simulation program is given a different signal to noise ratio and bit error rate under the packet error rate of the statistical map, using matlab and C (c-mex) procedures, respectively, to prepare, has a detailed description and notes .
- 2023-03-12 18:35:04下载
- 积分:1
-
改进的图像矢量化方法。可以对图像处理的后续做出贡献
改进的图像矢量化方法。可以对图像处理的后续做出贡献-Improved methods of image vectorization. Image processing can contribute to the follow-up
- 2022-01-30 19:36:55下载
- 积分:1
-
功能描述:FileManager用于对射频读卡器的数据更新和文件管理,操作界面仿照Windows的文件管理。通讯采用串口通讯,波特率为115200。
开发环...
功能描述:FileManager用于对射频读卡器的数据更新和文件管理,操作界面仿照Windows的文件管理。通讯采用串口通讯,波特率为115200。
开发环境:C++ Builder 6.0
所用控件:TComm、ExpressNavBar Suite-Functional Description: FileManager RF card reader for data update and document management, user interface modeled on the Windows file management. Communications using serial communications, baud rate to 115200. Development Environment: C++ Builder 6.0 used in the control: TComm, ExpressNavBar Suite
- 2022-05-18 03:59:37下载
- 积分: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