gpt4 book ai didi

python - CRC-CCITT 16位Python手动计算

转载 作者:行者123 更新时间:2023-12-04 13:39:00 26 4
gpt4 key购买 nike

问题

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

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

可能的解决方案

在网上找到以下CRC计算。但是,其实现是不正确的。

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

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

规范

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

问题

是否有人可以编写一个新函数或提供将 checkCRC函数解决为所需规范的指导。请注意,使用库或任何 import都无济于事。

最佳答案

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

该库对于实际用例很有趣,因为它预先计算了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替换为 poly = 0x11021,则建议的 poly = 0x1021例程为CRC-CCITT变体'1D0F'。

关于python - CRC-CCITT 16位Python手动计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25239423/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com