Top "Crc16" questions

CRC16 is a 16-bit Cyclic Redundancy Check code, used mainly as an error detection method during data transmission.

CCITT CRC 16 Bit Start Value 0xffff

I need to calculate a CCITT 16 bit checksum value for data passed as a parameter together with the length. If …

c++ checksum crc crc16
Function to calculate CRC16 (Modbus) value

Using C#.net,WPF application.I'm going to connect to a device (MODBUS protocol), I have to calculate CRC (CRC16). …

c# modbus crc16
CRC16 ISO 13239 Implementation

i'm trying to implement Crc16 in C#. I already tried many different implementations, but most of them gives me different …

c# crc crc16
CRC16 checksum: HCS08 vs. Kermit vs. XMODEM

I'm trying to add CRC16 error detection to a Motorola HCS08 microcontroller application. My checksums don't match, though. One online …

microcontroller checksum crc crc16
How to calculate crc16 in php

I need help in converting CRC code written in Ojective C to PHP. The following is the Objective C code …

php crc16
CRC 16 program to calculate check sum

I'm currently writing a CRC16 program which computes the CRC of characters using the CRC 16 polynomial X^16 + X^15 + X^2 + 1. the …

c crc crc16
What the lack of CRC-CCITT (0xFFFF)?

Based Online CRC calculation, when I entered hex string data = 503002080000024400003886030400000000010100 I get result CRC-CCITT (0xFFFF) = 0x354E (Expected Result) . I …

c# crc16
PHP Hex and Binary

I have a string in the following format: "0A1344010400010005" (hex representation) I would need to convert this string into an …

php binary hex crc16
ISO/IEC13239 CRC16 Implementation

I need a CRC16 implementation for NFC Tags. As the standard tolds me this is ISO/IEC13239 and a sample …

java crc16
How to get a CCITT-CRC16 on Python's crcmod lybrary?

I'm having problems to make a code in Python 3.4 using the CRCMOD library to get the CCITT CRC16 check. Thats …

python python-3.x crc16