CRC 16
http://www.lammertbies.nl/comm/info/crc-calculation.html
For input of hex 0x43 the CRC-16 (poly 0x8005) is 0xF141 as per above website...
How do I input this in below calculator to get same result?
https://ghsi.de/CRC/index.php?Polynom=1000000000000101&Message=43
CRC 8
http://www.codeproject.com/Articles/19059/C-CCITT-CRC-Algorithm
In above link with byte array {0xee, 0x01, 0x13, 0x00, 0x06, 0x1c, 0x00, 0x20, 0x1d, 0x00, 0x00} using CRC8 (poly 0xd5) it return 226 as a result.
How do I go about and insert the value into below website?
How about input 0x43? How do I input this using CRC8 (poly 0xd5) into the same website?
Sorry but I've been stucked on figuring out this... been studying CRC using below link until pg 11, and I have a rough idea on CRC calculation. But I have found difficulties in figuring how to get same result from the sources I mentioned above...