-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
different crc32 result from crccalc.com/ #15
Comments
I'll have a look Got the same results as you (so it is at least consistent) These are the settings, these are NOT in the table at crccalc.com
Checking with - http://zorc.breitbandkatze.de/crc.html Think you missed the XOR with 0xFFFFFF at the end (in the crccalc table) |
CDBAC17A is the CRC-32 when adding the string 123456789 twice. |
Thanks for your time. Using: the output is CBF43926 as expected. |
Good point to use at least a setting that is in the table. Might be useful to have a dump() function to print all settings at once. => easier to check them. |
FYI triggered by your question I created a 0.2.0 version
|
Running included crc32 example sketch on an arduino uno i get:
/home/brd/Arduino/libraries/CRC/examples/CRC32_test/CRC32_test.ino
89A1897F
89A1897F
89A1897F
CDBAC17A
18
while https://crccalc.com/ with "123456789" input: ascii, output: hex, i get: 0xCBF43926
here the crccalc result link
What i'm missing?
The text was updated successfully, but these errors were encountered: