移位法计算CRC校验码C语言代码
http://forum.eepw.com.cn/thread/226456/1
……
查表法计算CRC校验码C语言代码
http://forum.eepw.com.cn/thread/226457/1
……
CRC校验算法
http://forum.eepw.com.cn/thread/226455/1
礼品不错。
……
多项式请参考这里:
http://forum.eepw.com.cn/thread/226455/1
……
const unsigned int CRC_Tbl[256] = {
0x0000, 0x1189, 0x2312, 0x329B, 0x46……
#define CRC_POLY 0x8408
unsigned int cal_crc(unsigned char *ptr, unsigned……
CRC的全称为Cyclic Redundancy Check,中文名称为循环冗余校验。它是一类重要的线性分组码,编码和解码方法简单,检错……