Welcome![Sign In][Sign Up]
Location:
Search - CRC ITU

Search list

[GUI Develop循环冗余码校验crc算法

Description: 这是一个小程序,用VC++6.0来实现循环冗余码校验CRC算法。 标准为CRC-4,生成多项式为C(X)=X4+X+1, 应用举例为ITU G704 -This is a small program used to achieve VC 6.0 cyclical redundancy check CRC algorithm. Standards for the CRC-4, generating polynomial C (X) = X-1 X4, applications for the ITU G704
Platform: | Size: 7019 | Author: 藤力 | Hits:

[Other resourcecrc16

Description: 函数名称:CRC-16 Process 函数原型:INT16U make_crc16(INT8U *msgaddr,INT8U datalen) 函数功能:进行CRC校验和产生CRC代码.这个函数只影响全局变量crc16. 校验字放在字符串最后,低8位在前高8位在后. msgaddr : 进行CRC16校验的据块的首地址 datalen : 进行CRC16校验的据块的个数 CRC-ITU的计算算法如下: a.寄存器组初始化为全\"1\"(0xFFFF)。 b.寄存器组向右移动一个字节。 c.刚移出的那个字节与数据字节进行异或运算,得出一个指向值表的索引。 d.索引所指的表值与寄存器组做异或运算。 f.数据指针加1,如果数据没有全部处理完,则重复步骤b。 g.寄存器组取反,得到CRC,附加在数据之后(这一步可省略)。
Platform: | Size: 1717 | Author: liu | Hits:

[GUI Develop循环冗余码校验crc算法

Description: 这是一个小程序,用VC++6.0来实现循环冗余码校验CRC算法。 标准为CRC-4,生成多项式为C(X)=X4+X+1, 应用举例为ITU G704 -This is a small program used to achieve VC 6.0 cyclical redundancy check CRC algorithm. Standards for the CRC-4, generating polynomial C (X) = X-1 X4, applications for the ITU G704
Platform: | Size: 1177600 | Author: 藤力 | Hits:

[Algorithmcrc16

Description: 函数名称:CRC-16 Process 函数原型:INT16U make_crc16(INT8U *msgaddr,INT8U datalen) 函数功能:进行CRC校验和产生CRC代码.这个函数只影响全局变量crc16. 校验字放在字符串最后,低8位在前高8位在后. msgaddr : 进行CRC16校验的据块的首地址 datalen : 进行CRC16校验的据块的个数 CRC-ITU的计算算法如下: a.寄存器组初始化为全"1"(0xFFFF)。 b.寄存器组向右移动一个字节。 c.刚移出的那个字节与数据字节进行异或运算,得出一个指向值表的索引。 d.索引所指的表值与寄存器组做异或运算。 f.数据指针加1,如果数据没有全部处理完,则重复步骤b。 g.寄存器组取反,得到CRC,附加在数据之后(这一步可省略)。
Platform: | Size: 1024 | Author: liu | Hits:

[Windows DevelopVB_CRC

Description: CRC校验 Visual Basic源代码-CRC Checksum Visual Basic source code
Platform: | Size: 387072 | Author: zhang | Hits:

[Crack HackCRC

Description: 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).
Platform: | Size: 91136 | Author: semihost | Hits:

[CommunicationCRC16packetdetection

Description: 用CRC-16实现错误的校验,生成多项式为ITU标准多项式。我将这一模块用于数据包纠错中效果很好-CRC-16 used to achieve the wrong checksum, generating polynomial for the ITU standard polynomials. I will package this module for data error correction in the effective
Platform: | Size: 189440 | Author: vera | Hits:

[CommunicationCRCDelphi

Description: delphi CRC 16 32 delphi下的crc8,CRC16,CRC32算法的例子,直接拷贝代码就可以使用了-delphi CRC 16 32
Platform: | Size: 285696 | Author: 白杨 | Hits:

[VHDL-FPGA-Verilogcrc

Description: CRC-16 VHDL Source Code
Platform: | Size: 164864 | Author: kobin | Hits:

[matlabCCITT_CRC16

Description: CCITT的CRC16代码,自己编写的已通过验证,注意和Matlab的CRC函数有所不同。-This script calculates the 16-bit ITU-T CRC. The generator polynomial is G(x)=1+ X^5+ X^12+ X^16
Platform: | Size: 1024 | Author: 张原 | Hits:

[OtherMyCRC16

Description: visual basic 的CRC-ITU算法程序,用查表法实现,crc多项式为x^16 + x^15 + x^2 +1-visual basic procedures of the CRC-ITU algorithm, using look-up table method to achieve, crc polynomial x ^ 16+ x ^ 15+ x ^ 2+1
Platform: | Size: 2048 | Author: 汪柏 | Hits:

[Other Embeded programCRC16_2

Description: IAR Asm for MSP430. Calculate the CCITT/ITU/CRC-16 parameters for this CRC are: Polynomial: x^16 + x^12 + x^5 + 1 (0x1021) Start value 0xFFFF Data receives from USART Checksum in R11.-IAR Asm for MSP430. Calculate the CCITT/ITU/CRC-16 parameters for this CRC are: Polynomial: x^16 + x^12 + x^5 + 1 (0x1021) Start value 0xFFFF Data receives from USART Checksum in R11.
Platform: | Size: 2048 | Author: vlad | Hits:

[AlgorithmCRC

Description: 三种常用的CRC16校验算法的C51程序。以及16位CRC校验原理与算法分析。 CRC校验有多种方式,如:CRC8、CRC16、CRC32等等。在实际使用中,我们经常使用CRC16校验。CRC16校验也有多种,如:1005多项式、1021多项式(CRC-ITU)等。在这里我们不讨论CRC算法是怎样产生的,而是重点落在几种算法的C51程序的优化上。-three commonly CRC16 checksum algorithm C51 program. And a 16-bit CRC checksum principle and algorithm analysis. CRC check a variety of ways, such as: CRC8 CRC16, CRC32, etc.. In actual use, we often use the CRC16 checksum. CRC16 checksum variety, such as: polynomial 1005 1021 polynomial (CRC-ITU). Here we do not discuss how the CRC algorithm generated, but the emphasis falls on the optimization of several algorithms C51 program.
Platform: | Size: 226304 | Author: zenglinman | Hits:

[Program docCRC-SEAQ

Description: CRC seaQ资料,内涵peaq国际标准ITU-R Rec.BS-1116-1,对peaq进行设计和规范-RECOMMENDATION ITU-R BS.1116-1* METHODS FOR THE SUBJECTIVE ASSESSMENT OF SMALL IMPAIRMENTS IN AUDIO SYSTEMS INCLUDING MULTICHANNEL SOUND SYSTEMS
Platform: | Size: 4539392 | Author: stone | Hits:

[matlabCRC16

Description: CRC ITU CODE FOR CRC-16 CYLIC REDUCDANCY CHECK
Platform: | Size: 1024 | Author: celo celka | Hits:

[Linux-Unixcrc-itu-t

Description: CRC table for the CRC ITU-T V.41 0x0x1021 (x^16 + x^12 + x^15 + 1).
Platform: | Size: 2048 | Author: yuepuihue | Hits:

[Linux-Unixcrc-itu-t

Description: crc_itu_t - Compute the CRC-ITU-T for the data buffer.
Platform: | Size: 2048 | Author: kuyrrong | Hits:

[OtherCRC-ITU

Description: CRC-ITU算法C#实现,输入16进制字符串,算出CRC的码-CRC-ITU algorithm in C#, enter a hexadecimal string, calculates the CRC code
Platform: | Size: 50176 | Author: aaa | Hits:

[VHDL-FPGA-Verilogcrc16_d8

Description: 此代码采用Verilog语言实现8位CRC校验功能,采用CRC-ITU标准制定的CRC16校验-This code USES the Verilog language function of eight CRC check the CRC- ITU CRC16 calibration standards
Platform: | Size: 1024 | Author: zhangpeng | Hits:

CodeBus www.codebus.net