搜索资源列表
CRC算法及C语言实现
- 本文从理论上推导出CRC 算法实现原理,给出三种分别适应不同计算机或微控制器硬件环境的C 语言程序。读者更能根据本算法原理,用不同的语言编写出独特风格更加实用的CRC 计算程序。-is theoretically derived from the CRC algorithm theory, Adaptation were given three different computer or micro-controller hardware environment of the C Program
18b20带crc
- 是一个用8051驱动18b20温度传感器程序,同时带有crc检验,使用c语言编写,里面有详细的说明。-8051 with a temperature sensor-driven 18b20 procedures, and with unicef.org testing, use c language, which has detailed explanations.
卷积码、CRC
- 卷积码的C源程序,包括编码器和译码器。 还有一个是循环荣誉校验的vhdl]源码。-convolution of C source code, including the encoder and decoder. There is a cycle of the calibration honor VHDL] source.
数据传输的CRC校验
- 单片机通信或者远距离数据传输系统中做CRC校验的c源程序。可以嵌入到系统中直接运用。-SCM communication or remote data transmission system so CRC c source. Can be embedded directly into the system use.
CRC-CCITT-tab
- 一个生成反相CRC-CCITT校验码表的单片机C程序,反相CRC-CCITT= 0x8408,开发环境为Keil C51-a generation RP-CRC-CCITT CRC table of SCM C procedures, RP-CRC-CCITT = 0x8408, the development environment for Keil C51
lib_crc_16-32
- crc-16 crc-8 crc-32各种CRC校验C源代码-crc-16 crc-8 crc-32 various CRC C source code
crc51_16
- CRC校验C语言源码,可以用于各种单片机上面。-CRC C language source code that can be used for various microcontroller above.
C++_AND_C_codes
- It is C++ codes, include CRC, Oder, search table, and so on.-codes, include CRC, Oder, search table, and so on.
ModBus+CRC
- 完整的CRC循环冗余校验码程序,C语言编程
CRc
- 介绍了在通信中常用的CRC算法与实现,并给出了C语言实现程序。
CRC-16
- CRC校验,C源代码,可应用于Modbus
Crc4
- 八位CRC,c程序-eight CRC, c procedures
CRC 算法原理及C 语言实现
- CRC 算法原理及C 语言实现单片机和嵌入式系统使用-CRC algorithm principle and C language microcontroller and embedded systems use
sdcard
- sd卡代码,周立功 SD/MMC 卡读写模块: 相关工具函数 ---- CRC校验-sdcrc.c Soft Packet of SD Card Driver: tool funcitons about sd card---- crc check
crc
- C++ BUILDER 写的CRC校验码程序!CRCC(X16+X12+X5+1)-C++ BUILDER written procedures CRC Check! CRCC (X16+ X12+ X5+ 1)
CRC
- 查表法CRC16校正源代码,不需要CRC的计算,适合在单片机上使用。-CRC16
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-gen
- CRC Generator is a command-line application that generates Verilog or VHDL code for CRC of any data width between 1 and 1024 and polynomial width between 1 and 1024. The code is written in C and is cross-platform compatible
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