0

我正在使用 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有什么区别?

4

2 回答 2

1

Modbus16CRC16。CRC 计算有几个参数:

  • 位宽,在本例中为 16
  • 多项式,在本例中为 0xA001
  • 初始值,在本例中为 0xFFFF
  • 位顺序
  • 最终的 CRC 是否用 XOR 反转。

定义了相当多的 CRC16,这些参数具有不同的值,这似乎是其中之一。有关更多信息,请参阅有关循环冗余检查的 Wikipedia 文章

于 2013-07-19T00:20:46.683 回答
-2

类 Obliczenia {

short POLYNOM = (short) 0x0A001;
short[] TAB = {2,3,8,0x13,0x88,1,0x90,0,0x3c,2,0};
short crc = (short) 0xffff;
short CRC_LByte,CRC_HByte;
  public Obliczenia() {
    for (short dana : TAB) {
        crc= CRC16( crc, dana);
    }
    System.out.println("KOD CRC="+Integer.toHexString(crc&0xffff));
    CRC_LByte=(short)(crc & 0x00ff);
    CRC_HByte=(short)((crc & 0xff00)/256);
     System.out.println(" W ramce CRC_LByte="+Integer.toHexString(CRC_LByte)+ "    CRC_HByte   "+Integer.toHexString(CRC_HByte));

}
short CRC16(short crct, short data) {
    crct = (short) (((crct ^ data) | 0xff00) & (crct | 0x00ff));
         for (int i = 0; i < 8; i++) {
        boolean LSB = ((short) (crct & 1)) == 1;
         crct=(short) ((crct >>> 1)&0x7fff);
        if (LSB) {
            crct = (short) (crct ^ POLYNOM);
        }
    }
    return crct;
}

}

于 2013-10-19T12:03:42.883 回答