问题
我正在为嵌入式设备编写代码。 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
&#34; CRC-CCITT(XModem)&#34;是正确的CRC。
规范
我相信&#34; CRC-CCITT(XModem)&#34;现有在线解决方案中的计算使用多项式0x1021
。
问题
如果有人可以编写新功能或提供解决checkCRC
功能到所需规范的方向。请注意,使用图书馆或任何import
都无济于事。
答案 0 :(得分:8)
这是来自http://www.lammertbies.nl/comm/info/crc-calculation.html的C库的CRC库的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变体&#39; 1D0F&#39;如果您在开头用poly = 0x11021
替换poly = 0x1021
。
答案 1 :(得分:2)
原始函数checkCRC
也可以执行&#34; CRC-CCITT(XModem)&#34;。
刚设置:
poly = 0x1021
reg = 0
而不是
poly = 0x11021
reg = 0xFFFF
答案 2 :(得分:1)
这是一个可以转换为Python的C版本:
#define POLY 0x1021
/* CRC-16 XMODEM: polynomial 0x1021, init = 0, xorout = 0, no reflection */
unsigned crc16x(unsigned crc, unsigned char *buf, size_t len)
{
while (len--) {
crc ^= *buf++ << 8;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
crc = crc & 0x8000 ? (crc << 1) ^ POLY : crc << 1;
}
return crc & 0xffff;
}
crc
初始化为零。
答案 3 :(得分:1)
这是我使用的功能:
def crc16_ccitt(crc, data):
msb = crc >> 8
lsb = crc & 255
for c in data:
x = ord(c) ^ msb
x ^= (x >> 4)
msb = (lsb ^ (x >> 3) ^ (x << 4)) & 255
lsb = (x ^ (x << 5)) & 255
return (msb << 8) + lsb
答案 4 :(得分:0)
我开发了一个小的python模块来生成crc。 试试看它可能有用的源代码!
https://github.com/killercode/PythonCRC
根据您的需要,您只需使用以下代码
import crc
crccalc = crc.Crc()
crccalc.setCRCccitt() # Let's calculate the CRC CCITT of a value
crccalc.data = "My Data"
crccalc.compute()
print crccalc.result
希望有所帮助:)
答案 5 :(得分:0)
上面接受的答案是错误的。它不会用http://srecord.sourceforge.net/crc16-ccitt.html给出的16位0来增加零长度输入。幸运的是,它可以很容易地修复。我只会发布所做的更改。
def crc(str):
crc = PRESET
# start crc with two zero bytes
for _ in range(2):
crc = _update_crc(crc, 0)
for c in str:
crc = _update_crc(crc, ord(c))
return crc
def crcb(*i):
crc = PRESET
for _ in range(2):
crc = _update_crc(crc, 0)
for c in i:
crc = _update_crc(crc, c)
return crc
现在,如果将新的实现与expected CRC values,进行比较,我们将获得“ good_crc”值,而不是“ bad_crc”值。
答案 6 :(得分:0)
如果对使用python的CRC-16-CITT感兴趣的人,现在有一个内置的python软件包(binascii
)可以解决此问题:binascii.b2a_hqx(data, value)
。