CRC-CCITT 16位Python手动计算

2023-12-23

Problem

我正在为嵌入式设备编写代码。许多 CRC-CCITT 16 位计算解决方案都需要库。

鉴于使用库几乎是不可能的并且会消耗其资源,因此需要一个函数。

可能的解决方案

下面是网上找到的CRC计算。然而,它的实现是不正确的。

http://bytes.com/topic/python/insights/887357-python-check-crc-frame-crc-16-ccitt http://bytes.com/topic/python/insights/887357-python-check-crc-frame-crc-16-ccitt

def checkCRC(message):
    #CRC-16-CITT poly, the CRC sheme used by ymodem protocol
    poly = 0x11021
    #16bit operation register, initialized to zeros
    reg = 0xFFFF
    #pad the end of the message with the size of the poly
    message += '\x00\x00' 
    #for each bit in the message
    for byte in message:
        mask = 0x80
        while(mask > 0):
            #left shift by one
            reg<<=1
            #input the next bit from the message into the right hand side of the op reg
            if ord(byte) & mask:   
                reg += 1
            mask>>=1
            #if a one popped out the left of the reg, xor reg w/poly
            if reg > 0xffff:            
                #eliminate any one that popped out the left
                reg &= 0xffff           
                #xor with the poly, this is the remainder
                reg ^= poly
    return reg

现有在线解决方案

以下链接正确计算了 16 位 CRC。

http://www.lammertbies.nl/comm/info/crc-calculation.html#intr http://www.lammertbies.nl/comm/info/crc-calculation.html#intr

“CRC-CCITT (XModem)”下的结果是正确的 CRC。

规格

我相信现有在线解决方案中的“CRC-CCITT (XModem)”计算使用多项式0x1021.

Question

如果有人可以编写一个新函数或提供解决问题的方向checkCRC功能符合所需规格。请注意,使用图书馆或任何import的不会有帮助。


这是 C 库的 python 端口http://www.lammertbies.nl/comm/info/crc-calculation.html http://www.lammertbies.nl/comm/info/crc-calculation.html用于 CRC-CCITT XMODEM

该库对于实际用例很有趣,因为它预先计算了 crc 表以提高速度。

用法(使用字符串或字节列表):

crc('123456789')
crcb(0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39)

测试给出:'0x31c3'

POLYNOMIAL = 0x1021
PRESET = 0

def _initial(c):
    crc = 0
    c = c << 8
    for j in range(8):
        if (crc ^ c) & 0x8000:
            crc = (crc << 1) ^ POLYNOMIAL
        else:
            crc = crc << 1
        c = c << 1
    return crc

_tab = [ _initial(i) for i in range(256) ]

def _update_crc(crc, c):
    cc = 0xff & c

    tmp = (crc >> 8) ^ cc
    crc = (crc << 8) ^ _tab[tmp & 0xff]
    crc = crc & 0xffff
    print (crc)

    return crc

def crc(str):
    crc = PRESET
    for c in str:
        crc = _update_crc(crc, ord(c))
    return crc

def crcb(*i):
    crc = PRESET
    for c in i:
        crc = _update_crc(crc, c)
    return crc

您提议的checkCRC如果替换,例程是 CRC-CCITT 变体“1D0F”poly = 0x11021 with poly = 0x1021一开始。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

CRC-CCITT 16位Python手动计算 的相关文章

随机推荐