Tagged Questions
The crc16 tag has no wiki summary.
2
votes
2answers
247 views
C# to F# CRC16 ^ and ^^^ works different. How ^ works?
I found this C# code for CRC16 but I need it on F# :
using System;
public class Crc16 {
const ushort polynomial = 0xA001;
ushort[] table = new ushort[256];
public ushort ...
2
votes
1answer
533 views
CRC16 in Python
How do I calculate CRC16 in Python?
In Perl I would write something like:
use Digest::CRC "crc16";
$result = crc16($str);
How do I do same thing in Python?
2
votes
1answer
790 views
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 CRC calculator provides both the result I see in my PC program and ...
2
votes
3answers
815 views
CRC 16 -DECT with poly x^16 + x^10 + x^8 + x^7 + x^3 + 1
believe me I have tried to code this, tried Google, and haven't had any luck.
I'm trying to implement a CRC16 using this poly
x^16 + x^10 + x^8 + x^7 + x^3 + 1
using the C language. Since I ...
2
votes
2answers
639 views
How to calculate the CRC in RFID protocol
When reading data from a RFID device you will find a CRC-CCITT over the payload. "The CRC is initialized with 0x3791 instead of the usual value 0xFFFF." How can I define the function, that checks that ...
1
vote
3answers
207 views
How Unique is CRC16 Value?
I'm developing an OpenSource .NET Licensing Engine.
This engine use hardware id (harddisk serial number) as lock and CRC16 this value to get shorten identifier.
Example value is MAXTOR ST3100, ...
1
vote
1answer
343 views
CRC16 calculation not quite right
I am working from http://www.ross.net/crc/download/crc_v3.txt, and using the 16-bit polynomial 0x8005.
My message is 0xAE.
This site http://www.lammertbies.nl/comm/info/crc-calculation.html ...
0
votes
3answers
113 views
crc16 algorithm from C++ to bash
I am trying to implement a CRC16 checksum in bash. I'm porting from an existing piece of C++ code. I'm almost there, but I am getting different answers.
I don't quite see why the checksums between ...
0
votes
1answer
56 views
CRC16 algorithm from CPP to bash?
we are sending some data over a serial line, and i can do pretty much everything via a bash script (instead of code), except for the crc16 calculation. if i can do it all in scripts versus code, it ...
0
votes
2answers
98 views
Determine Error Offset Byte by CRC16
Is it possible to determine the byte, or bytes, that have changed from a CRC16 calculation?
For example, say I get a config file that is 780 bytes that includes the CRC16 as a two byte value at the ...
0
votes
1answer
76 views
I am trying to figure out the crc used in serial communication
I am trying to figure out the crc/ checksum used in the following data set. Any one any idea
1) 01 03 13 92 00 04 e1 59 0d
2) 01 03 13 93 00 04 61 4e 0d
3) 01 03 1b 68 00 04 5d 12 0d
...
0
votes
1answer
499 views
CRC32 or CRC16: Which one to choose for a protocol?
I am currently designing a data serialization and deserialization protocol which will be used for:
TCP transmission,
Data storage
I know there is a checksum mechanism in TCP, but it is a XOR of ...