如何使用 Python 计算此 CRC?

Sim*_*oni 1 python crc

我需要使用 Python 计算此 CRC 以与 Aurora (ABB) 太阳能逆变器通信。

这是文档:http : //www.drhack.it/images/PDF/AuroraCommunicationProtocol_4_2.pdf 在最后一页中有计算 CRC 的说明,我需要在 python 中进行。

我得到的消息是

MESSAGE_GRID_VOLTAGE = bytes.fromhex("023b010000000000")
Run Code Online (Sandbox Code Playgroud)

结果应该是:

CRC_L = FF

CRC_H = 2C

然后我需要像这样发送带有 CRC 的完整消息:

MESSAGE_GRID_VOLTAGE = bytes.fromhex("023b010000000000ff2c")
Run Code Online (Sandbox Code Playgroud)

我怎么能在python中做到这一点?谢谢!

这是我尝试过的代码:

message = "023b010000000000"

BccLo= int ("FF",16)
BccHi= int("FF", 16)

New = int(message, 16)

New = New ^ BccLo
Tmp=New << 4
New=Tmp ^ New
Tmp=New >> 5
BccLo=BccHi
BccHi= New ^ Tmp
Tmp=New << 3
BccLo=BccLo ^ Tmp
Tmp=New >> 4
BccLo=BccLo ^ Tmp

CRC_L = ~BccLo
CRC_H = ~BccHi
Run Code Online (Sandbox Code Playgroud)

PM *_*ing 7

您需要将该算法应用于消息的每个字节。稍微复杂一点的是,Aurora PDF 文件中给出的算法假定计算是使用 8 位无符号算术执行的。为了在 Python 中处理它,我们可以使用位掩码 0xff。这是该代码的稍微优化的版本。

def crc_16(msg):
    lo = hi = 0xff
    mask = 0xff
    for new in msg:
        new ^= lo
        new ^= (new << 4) & mask
        tmp = new >> 5
        lo = hi
        hi = new ^ tmp
        lo ^= (new << 3) & mask
        lo ^= new >> 4
    lo ^= mask
    hi ^= mask
    return hi << 8 | lo

# Test

msg = bytes.fromhex("023b010000000000")
out = crc_16(msg)
hi, lo = out >> 8, out & 0xff
print('{:04x} = {:02x} {:02x}'.format(out, hi, lo))
Run Code Online (Sandbox Code Playgroud)

输出

2cff = 2c ff
Run Code Online (Sandbox Code Playgroud)

上面的代码有效,但有更简单的方法来计算 CRC。如果您需要计算大量 CRC,我们可以使用表格来加快进程。

正如维基百科循环冗余校验文章所提到的,CRC 算法通常根据编码为十六进制数的多项式来指定。这是一个使用反向多项式表示的函数。

def crc_16_CCITT(msg):
    poly = 0x8408
    crc = 0xffff
    for byte in msg:
        for _ in range(8):
            if (byte ^ crc) & 1:
                crc = (crc >> 1) ^ poly
            else:
                crc >>= 1
            byte >>= 1
    return crc ^ 0xffff
Run Code Online (Sandbox Code Playgroud)

为了加快速度,我们可以计算一个表格。

def make_crc_table():
    poly = 0x8408
    table = []
    for byte in range(256):
        crc = 0
        for bit in range(8):
            if (byte ^ crc) & 1:
                crc = (crc >> 1) ^ poly
            else:
                crc >>= 1
            byte >>= 1
        table.append(crc)
    return table

table = make_crc_table()

def crc_16_fast(msg):
    crc = 0xffff
    for byte in msg:
        crc = table[(byte ^ crc) & 0xff] ^ (crc >> 8)
    return crc ^ 0xffff

# Test

msg = bytes.fromhex("023b010000000000")
out = crc_16_fast(msg)
hi, lo = out >> 8, out & 0xff
print('{:04x} = {:02x} {:02x}'.format(out, hi, lo))
Run Code Online (Sandbox Code Playgroud)

如果您愿意,您可以打印表格并将其粘贴到您的脚本中,这样您就不必每次运行脚本时都计算表格。


Adr*_*n W 5

根据引用的文件,该算法实际上是标准的 16 位 CCITT CRC。这可以用 Python' 标准计算crcmod.

干得好:

import crcmod

# this is a standard CCITT CRC even if it does not look like
# (crcmod applies xorOut to initCrc, so initCrc is in reality 0xffff, not 0)
_CRC_FUNC = crcmod.mkCrcFun(0x11021, initCrc=0, xorOut=0xffff)

data = bytearray.fromhex("023b010000000000")
crc = _CRC_FUNC(data)
data.append(crc & 0xff)
data.append(((crc >> 8) & 0xff))

print (data.hex())
Run Code Online (Sandbox Code Playgroud)

输出:023b010000000000ff2c

  • `crcmod` 不是标准的 Python 模块,但我认为从 PyPI 安装它很容易。 (2认同)