Welcome![Sign In][Sign Up]
Location:
Search - crc-8

Search list

[Other resourcecrc8

Description: 8051上的CRC8校验 A CCITT-8 CRC calculator. The source contains both the calculated (smaller but slower) version, and the table driven (faster but larger) version.-8051 CRC8 check on the CCITT A-8 CRC calculator. Th e source contains both the calculated (smaller but slower) version, and the table driven (faster but larger) versio n.
Platform: | Size: 2432 | Author: buaalzx | Hits:

[Windows DevelopGeneralHashFunctions_-_C

Description: 8种CRC的C++ hash算法,可以供需要寻找hash算法的人使用! 广泛应用于包括路由/纠错等领域中!-eight CRC C hash algorithm, for it needs to find the hash algorithm to use! Widely used include routing / correction fields!
Platform: | Size: 3211 | Author: 张宾 | Hits:

[JSP/JavaJCRC

Description: 将数据帧中的第一个8位字节与CRC寄存器中的低字节进行异或运算,CRC寄存器,循环冗余校验算法-data frame of an 8-byte CRC register with the low byte for XOR, CRC register, cyclic redundancy checking algorithm
Platform: | Size: 2002 | Author: | Hits:

[GUI Developgads

Description: #include <stdio.h> unsigned long int crc32_table[256] unsigned long int ulPolynomial = 0x04c11db7 unsigned long int Reflect(unsigned long int ref, char ch) { unsigned long int value(0) // 交换bit0和bit7,bit1和bit6,类推 for(int i = 1 i < (ch + 1) i++) { if(ref & 1) value |= 1 << (ch - i) ref >>= 1 } return value } init_crc32_table() { unsigned long int crc,temp // 256个值 for(int i = 0 i <= 0xFF i++) { temp=Reflect(i, 8) crc32_table[i]= temp<< 24 for (int j = 0 j < 8 j++){ unsigned long int t1,t2 unsigned long int flag=crc32_table[i]&0x80000000 t1=(crc32_table[i] << 1) if(flag==0) t2=0 else t2=ulPolynomial crc32_table[i] =t1^t2 } crc=crc32_table[i] crc32_table[i] = Reflect(crc32_table[i], 32) } } -# include
Platform: | Size: 795 | Author: 海波 | Hits:

[Other resourceCRC_8051

Description: This a demo illustrating (1) 8-bit CRC check sums, (2) 57600,N,9,1 communications, and (3) RS-422/RS-485 communications. -This a demo illustrating (1) 8-bit CRC check sums, (2) 57600,N,9,1 communications, and (3) RS-422/RS-485 communications.
Platform: | Size: 16878 | Author: 陳大慶 | Hits:

[Applicationscrc8

Description: 8位CRC源代码-eight CRC source code
Platform: | Size: 2351 | Author: 李陵 | Hits:

[Other resourcecrc_8_16

Description: 8位和16位CRC检验接口程序,在CCS6000下测试通过。-8-bit and 16-bit CRC test interface procedures, the CCS6000 under test.
Platform: | Size: 2167 | Author: 周金喜 | Hits:

[Other resource[Serial_communication_c_programmer_guide]

Description: [美]Joe Campbell 著 徐国定 廖卫东 张庆 译 吴洪来 赵军 审校 清华大学出版社 第一部分 串行通信基础 第l章 ASCII字符集 第2章 异步通信技术基础 第3章 错误及错误检测 第4章 信息传输 第5章 调制解调器及其控制 第6章 UART:一个概念上的模型 第7章 实际的UART 第8章 baseline灵巧型调制解调器 第9章 智能调制解调器命令 第10章 协议调制解调器 第ll章 传真机 第二部分 用C语言编写异步通信程序 第12章 设计一个基本的串行I/O库 第13章 程序的可移植性 第14章 波特率和数据格式函数 第15章 RS—232输入控制 第16章 流控制和SIO管理 第17章 格式输出 第18章 格式输入 第19章 中断I/O导论 第20章 中断子处理程序 第2l章 灵巧型调制解调器程序设计 第22章 XMODEM文件传送 第23章 循环冗余校验CRC计算 第24章 Group3传真图象的编码和解码
Platform: | Size: 17902239 | Author: fanny | Hits:

[Othercrcgen

Description: CRC 8 CRC 16 CHECK PROGRAM .
Platform: | Size: 105472 | Author: didi | Hits:

[e-languageCrcMoose.py

Description: CRC 32 calculator in python
Platform: | Size: 6144 | Author: Juan M | Hits:

[CA authCrc16.py

Description: CRC 16 bits em python
Platform: | Size: 6144 | Author: Juan M | Hits:

[CA authCrc24

Description: CRC 24 code python for calculate result
Platform: | Size: 6144 | Author: Juan M | Hits:

[OtherPLCCRC

Description: 三菱PLC程序CRC校验算法 Mitsubishi PLC program CRC checksum algorithm-Mitsubishi PLC program CRC checksum algorithm
Platform: | Size: 13312 | Author: 黄一一 | Hits:

[Crack HackCrc

Description: crc的生成与验证,包括16位,8位,32位-CRC generation and validation, including 16, 8, 32 bits
Platform: | Size: 4096 | Author: cjf | Hits:

[Delphi VCLCRC

Description: CRC校验算法(包含8位16位32位),多种方式的CRC码的校验。-CRC verification, a variety of ways to verify the CRC code
Platform: | Size: 186368 | Author: WSQ | Hits:

[Algorithmcrc8

Description: crc-8 x8+x2+x+1,查表方式的计算方法。-crc8 x8+ x2+ x+ 1, calculated look-up table approach.
Platform: | Size: 1024 | Author: Matthew | Hits:

[Windows Developchencc658

Description: 3字节CRC-8的生成 (labview 2009sp1) 输入3字节的数组,得到4字节的数组。CRC会加在第四字节(3 byte CRC-8 generation (LabVIEW, 2009sp1), enter 3 byte array, to get 4 byte array. CRC will be added to fourth bytes)
Platform: | Size: 9216 | Author: juhigu778 | Hits:

[USB developCRC5_CRC16_USB

Description: USB2.0数据包CRC 16,TOKEN令牌包是CRC5,VerilogHDL代码 多项式y=1+x^2+x^15+x^16; y=1+x^2+x^5; 只是串行1位的代码, 并行8位,16位没有上传(USB CRC 16 , VerilogHDL code polynomial(0_2_15_16); polynomial(0_2_5))
Platform: | Size: 6144 | Author: 诡迹xjn | Hits:

[SCMCRC-8校验

Description: CRC8校验的程序参考,用于数据传输的校验(CRC8 check, for the data transfering process to check the data.)
Platform: | Size: 6144 | Author: 子_丑 | Hits:

[LabViewMB LRC-8

Description: CRC校验码,用于modbus,可以保证传输数据不出错(CRC check code, used in modbus, can guarantee the transmission of data without error)
Platform: | Size: 8192 | Author: fdfggg | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 »

CodeBus www.codebus.net