Top "Crc16" questions

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

Function to Calculate a CRC16 Checksum

I'm working on a library to provide simple reliable communication over an RS232 or RS485 connection. Part of this code …

c crc crc16
How to generate a CRC-16 from C#

I am trying to generate a CRC-16 using C#. The hardware I am using for RS232 requires the input string …

c# crc crc16
Calculating Modbus RTU CRC 16

I'm implementing a software where I read and write data in Modbus RTU protocolo via serial. For that, I need …

c++ qt hex modbus crc16
CRC-CCITT Implementation

I am using the following function to generate a CRC sum and it doesn't appear to be returning the same …

c++ c checksum crc crc16
Calculating CRC16 in Python

I'm trying to evaluate appropriate checksum based on CRC-16 algorithm using crcmod Python module and 2.7 version of Python interpreter. The …

python python-2.7 crc16
How to calculate CRC 16 with polynomial x16 + x12 + x5 + 1

I am trying to interface with some system and in their specs they require to calculate CRC 16 for serial communication. …

c# .net serial-port crc crc16
CRC-CCITT 16-bit Python Manual Calculation

Problem I am writing code for an embedded device. A lot of solutions out there for CRC-CCITT 16-bit calculations require …

python python-2.7 crc crc16
How to use table based CRC-16 code?

I was hoping someone might be able to shed some light on why my CRC-16 implementation does not seem to …

c crc16
crc16 implementation java

I am having problems with calculating CRC-16 implementation of a byte array in java. Basically I am trying to send …

byte implementation crc rfid crc16
Calculation of CCITT standard CRC with polynomial x^16 + x^12 + x^5 + 1 in Java

I need help with calculating of CCITT standard CRC with polynomial x^16 + x^12 + x^5 + 1 (0x1081) in Java. I have tried …

java calculator polynomial-math crc16