搜索资源列表
lib_crc_16-32
- crc-16 crc-8 crc-32各种CRC校验C源代码-crc-16 crc-8 crc-32 various CRC C source code
CRC-16
- CRC校验,C源代码,可应用于Modbus
CRC校验码软件
- CRC-16是检测数据在发送过程中发生错误的常用校验方法,本文通过从工程应用的角度,讲述如何实现CRC-16的程序开发,并给出了Visual Basic和Visual C++程序代码,给从事工业控制的人员在写通信程序的时候提供一些有价值的参考。
CRC校验,16位算法
- C#编写,应用于文件的CRC16位校验算法
crc.zip CRC校验程序
- CRC校验程序,使用了CRC-16和CRC-CCITT方法 ,CRC inspection program, which use crc-16 and crc-ccitt method
CRC.rar
- CRC-16算法的C语言实现(以常见的CRC-ITU为例引出的比特型算法)。,CRC-16 algorithm of the C language (in common CRC-ITU as an example of bit-based algorithm for extraction).
CRC8-16
- CRC校验的相关原理以及CRC-8和CRC-16的C语言实现。-The relevant principles of the CRC and the CRC-8 and CRC-16 of the C language.
CRC16Modbbus
- CRC-16 Modbus 标准协议原理及C代码实现实例-CRC-16 Modbus standard protocol principles and examples of C code to achieve
CRC32-16
- CRC16_32 C实例与硬件CRC精解 CRC16/CRC32必看-CRC16_32 C instance fine with the hardware CRC Solutions CRC16/CRC32 must see!!
crc
- CRC校验程序包,包含VB,C,汇编下,实现CRC校验程序的代码,详细介绍CRC校验的原理,介绍 查表法,半字节查表法,等等实现CRC校验的方法,希望对大家有所帮组。-CRC Checksum package, including VB, C, compilation achieve CRC checksum code, detailing the principles of CRC checksum on look-up table method, semi-byte look-up tabl
CRC-16
- 该文件是关于CRC校验的,在Visual C++环境下实现。-The document is on the CRC check in Visual C++ environments.
crc
- crc校验 包括原理文件和说明 另附有一个crc16的c程序函数和crc32的vc项目文件-CRC checksum, including the principle of documents and a note attached CRC16 function of c procedures and CRC32 of vc project documents
lib_crc-CRC_library
- The file lib_crc.c contains source code for functions to calculate five commonly used CRC values: CRC-16, CRC-32, CRC-DNP, CRC-SICK, CRC-Kermit and CRC-CCITT. The functions can be freely used. - The file lib_crc.c contains source cod
crc.c
- CRC source code for linux environment. CRC for 16 bytes packet. Useful for checking crc of tinyos uart packet.
checkCRC
- CRC效验程序,使用CRC-16和CRC-CCITT方法。 其中CRC-16的效验字是: X^16 + X^15 + X^2 + 1,CRC-12的效验字是: X^12 + X^11 + X^3 + X^2 + X^1 +1 CRC-CCITT的效验字是: X^16 + X^12 + X^5 + 1 -CRC-tested program, using the CRC-16 and CRC-CCITT method. Including CRC-16' s efficacy wor
CRC
- CRC32/16 Routine. Highly optimized for word aligned data. Enable using FAST_CRC macro in the file crc.c
CRC-16Code
- CRC-16是检测数据在发送过程中发生错误的常用校验方法,本文通过从工程应用的角度,讲述如何实现CRC-16的程序开发,并给出了Visual Basic和Visual C++程序代码,给从事工业控制的人员在写通信程序的时候提供一些有价值的参考。-CRC-16 is to detect data errors in the process of sending commonly used calibration methods, the paper from the engineering poi
CRC.C
- 下面以最常用的CRC-16为例来说明其生成过程。 CRC-16码由两个字节构成,在开始时CRC寄存器的每一位都预置为1,然后把CRC寄存器与8-bit的数据进行异或(异或:二进制运算 相同为0,不同为1;0^0=0 0^1=1 1^0=1 1^1=0), 之后对CRC寄存器从高到低进行移位,在最高位(MSB)的位置补零,而最低位(LSB,移位后已经被移出CRC寄存器)如果为1,则把寄存器与预定义的多项式码进行异或,否则如果LSB为零,则无需进行异或。重复上述的由高至低的移位8
Crc.c
- 多项式x^16 + x^15 + x^2 + 1 种子0xFFFF -Polynominal x^16+ x^15+ x^2+ 1 seed : 0xFFFF
CRC查表
- 实现modbus crc校验功能,通过查表法,返回16为crc校验结果(To achieve modbus crc check function, through the look-up table method, return 16 for the crc check results)