ModbusInfoPackCommandToTcp 方法 |
将modbus指令打包成Modbus-Tcp指令,需要指定ID信息来添加6个字节的报文头
Pack the Modbus command into Modbus-Tcp command, you need to specify the ID information to add a 6-byte message header
命名空间:
HslCommunication.ModBus
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static byte[] PackCommandToTcp(
byte[] modbus,
ushort id
)
Public Shared Function PackCommandToTcp (
modbus As Byte(),
id As UShort
) As Byte()
public:
static array<unsigned char>^ PackCommandToTcp(
array<unsigned char>^ modbus,
unsigned short id
)
static member PackCommandToTcp :
modbus : byte[] *
id : uint16 -> byte[]
参数
- modbus
- 类型:SystemByte
Modbus核心指令 - id
- 类型:SystemUInt16
消息的序号
返回值
类型:
ByteModbus-Tcp指令
参见