CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 嵌入式/单片机编程 搜索资源 - crc c 16

搜索资源列表

  1. lib_crc_16-32

    0下载:
  2. crc-16 crc-8 crc-32各种CRC校验C源代码-crc-16 crc-8 crc-32 various CRC C source code
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:29188
    • 提供者:真实姓名
  1. GetCRC16

    0下载:
  2. 单片机C语言获得CRC-16效验码的查表算法.快速有效.
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:1903
    • 提供者:XuKun
  1. CRC-16

    0下载:
  2. CRC校验,C源代码,可应用于Modbus
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:3263
    • 提供者:kingspr
  1. CRC8-16

    0下载:
  2. CRC校验的相关原理以及CRC-8和CRC-16的C语言实现。-The relevant principles of the CRC and the CRC-8 and CRC-16 of the C language.
  3. 所属分类:SCM

    • 发布日期:2017-03-28
    • 文件大小:62055
    • 提供者:刘世生
  1. CRC32-16

    1下载:
  2. CRC16_32 C实例与硬件CRC精解 CRC16/CRC32必看-CRC16_32 C instance fine with the hardware CRC Solutions CRC16/CRC32 must see!!
  3. 所属分类:SCM

    • 发布日期:2017-03-22
    • 文件大小:70938
    • 提供者:hong
  1. 1

    0下载:
  2. C51实现16位CRC检验码,简短只有不到2K的大小,高效适合扩展。-C51 test to achieve 16-bit CRC code, the short size of less than 2K, and efficient for the expansion.
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:195352
    • 提供者:小超
  1. MSP430_CRC

    0下载:
  2. 用MSP430实现CRC的方法 Cyclic Redundancy Code (CRC) -Cyclic Redundancy Code (CRC) is commonly used to determine the correctness of a data transmission or storage. This application note presents a solution to compute 16-bit and 32-bit CRCs on the ultr
  3. 所属分类:SCM

    • 发布日期:2017-03-30
    • 文件大小:185791
    • 提供者:防止
  1. crc.c

    0下载:
  2. CRC source code for linux environment. CRC for 16 bytes packet. Useful for checking crc of tinyos uart packet.
  3. 所属分类:Other Embeded program

    • 发布日期:2017-03-30
    • 文件大小:1082
    • 提供者:andus
  1. checkCRC

    0下载:
  2. 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
  3. 所属分类:SCM

    • 发布日期:2017-03-28
    • 文件大小:1107
    • 提供者:spencer
  1. CRC16bit

    0下载:
  2. 16位CRC产生功能,其中为两种产生CRC的C程序,都很好用。-16-bit CRC generating function, which generate CRC for the two C-programs, are easy to use.
  3. 所属分类:SCM

    • 发布日期:2017-04-02
    • 文件大小:1408
    • 提供者:丁红东
  1. Example-CRC_Generation

    0下载:
  2. CRC Generation example for PIC microcontroller using languaje C
  3. 所属分类:SCM

    • 发布日期:2017-04-08
    • 文件大小:25415
    • 提供者:Giancarlo
  1. CRC.C

    0下载:
  2. 下面以最常用的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
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-27
    • 文件大小:11311
    • 提供者:malimin
  1. xmodemCRC16.c

    0下载:
  2. 本人根据XMODEM协议的16位CRC校验方式CRC--CCITT(X^16 + X^12 + X^5 + 1),根据其理论思路一步一步编写的源代码,按照程序思路,会比较容易理解CRC16较验方式的来龙去脉。 -I according to the XMODEM protocol 16 of the CRC method CRC- CCITT (X ^ 16+ X ^ 12+ X ^ 5+ 1), according to their theoretical ideas step by st
  3. 所属分类:SCM

    • 发布日期:2017-03-29
    • 文件大小:702
    • 提供者:海天
  1. CRC16_C

    0下载:
  2. C语言,16位的CRC校验程序。可以直接调用-CRC procedures
  3. 所属分类:Other Embeded program

    • 发布日期:2017-11-26
    • 文件大小:830
    • 提供者:Huang_Y_B
  1. CRCAlgorithmandC

    0下载:
  2. crc-16,32算法原理分析及c语言实现-crc-16, 32 the algorithm principle analysis c language
  3. 所属分类:SCM

    • 发布日期:2017-11-29
    • 文件大小:27805
    • 提供者:menglinglei
  1. CRC16

    0下载:
  2. C语言。包含2个C文件。 用于CRC校验,分为16位和32位CRC计算。可用于RS485,CAN等多种通讯。-C language. It contains two C files. For the CRC, divided into 16-bit and 32-bit CRC calculations. Can be used for RS485, CAN and other communications.
  3. 所属分类:SCM

    • 发布日期:2017-04-13
    • 文件大小:1583
    • 提供者:祝鹏
搜珍网 www.dssz.com