我正在使用 modbus 协议连接到设备。我需要从机器上获取 3 个值。第一个值是 int16 数据格式,当我发送示例字节数组时:
static byte[] hz = new byte[] { (byte) 0x01, (byte) 0x03, (byte) 0x00,
(byte) 0x33, (byte) 0x00, (byte) 0x01 };
并使用我从上一个关于该主题的问题中获得的 CRC 计算方法。
// Compute the MODBUS RTU CRC
private static int ModRTU_CRC(byte[] buf, int len)
{
int crc = 0xFFFF;
for (int pos = 0; pos < len; pos++) {
crc ^= (int)buf[pos]; // XOR byte into least sig. byte of crc
for (int i = 8; i != 0; i--) { // Loop over each bit
if ((crc & 0x0001) != 0) { // If the LSB is set
crc >>= 1; // Shift right and XOR 0xA001
crc ^= 0xA001;
}
else // Else LSB is not set
crc >>= 1; // Just shift right
}
}
// Note, this number has low and high bytes swapped, so use it accordingly (or swap bytes)
return crc;
}
我可以收到回复。但是,其他两个值是 int32 数据格式,当我使用此方法时不返回回复。为了帮助排除故障,我使用了一个名为Realterm 的程序。也可以触发命令。我使用它将 Modbus 16 CRC 附加到字节流的末尾并发送它,这适用于所有三个并返回所需的回复。这是数据格式不适用于此特定计算公式的情况吗?CRC16和Modbus16有什么区别?