-
是挂语言LINUX 的C 的很好的文章初学着可以好好的学习一下
是挂语言LINUX 的C 的很好的文章初学着可以好好的学习一下
-LINUX is pegged to the C language is a good beginner article to properly study the
- 2023-07-03 14:20:05下载
- 积分:1
-
M的JSON解析器
M的JSON解析器是写在ISO C小JSON解析器使用户处理由JSON数据交换格式描述的信息。
- 2022-11-04 16:05:03下载
- 积分:1
-
这个代码是用来接口控制器和七段显示
this a code which is used to interface controller with sevensegment display-this is a code which is used to interface controller with sevensegment display
- 2022-05-17 12:55:03下载
- 积分:1
-
本例是采用UDP通信,包括服务器与客户端,包括数据重传机制和异常处理机制...
本例是采用UDP通信,包括服务器与客户端,包括数据重传机制和异常处理机制-In this case is the use of UDP communications, including server and client, including data retransmission mechanism and exception handling mechanism
- 2022-02-01 15:09:22下载
- 积分:1
-
TCP,epoll,socket,Linux C,网络通信,I/O复用
基于TCP协议的socket套接口编程小程序,可以在两个进程(一个客户端,一个服务器)之间收发内容,使用了epoll方式I/O复用,内容简洁易懂,是初步学习套接口编程及epoll复用的绝佳例程。
- 2022-03-12 03:07:58下载
- 积分:1
-
司机司机司机cs1100 cs1100 cs1100 cs1100司机cs1100司机cs1100 DRI…
CS1100驱动
CS1100驱动
CS1100驱动
CS1100驱动-CS1100 driver CS1100 driver CS1100 driver CS1100 driver CS1100 driver CS1100 driver
- 2023-01-01 06:35:04下载
- 积分:1
-
Introduction This document is at saturation soliton transmission medium matlab s...
此文档是介绍孤子在饱和介质中传输的matlab仿真过程,孤子仿真网上有很多文章,可是均不带源码,恰巧本人编了些就都传上了,希望对各位有用。-Introduction This document is at saturation soliton transmission medium matlab simulation process, there is a lot of soliton simulation online article, but not with source code, I made something happen on both a mass on the hope that useful to you.
- 2022-04-30 13:33:23下载
- 积分:1
-
这个程序是自由软件,你可以重新分配和/或修改
This program is free software you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation either version 2 of the License, or
(at your option) any later version.
- 2022-09-09 20:15:04下载
- 积分:1
-
信道均衡的讲义,将均衡讲的出神入化,非常之好
信道均衡的讲义,将均衡讲的出神入化,非常之好-Channel equalization of the handouts, will talk about the superb balance, very good
- 2022-03-31 00:39:00下载
- 积分: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