问题
我正在为嵌入式设备编写代码。许多用于 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
's 都无济于事。