I have arduino 1.8.19 installed and using with teensyduino 1.56. I want to try IDE 2.0 and still have 1.8.19 as a fallback, can I have both installed and and use the 1.57 beta on 2.0 only? How can I install...
I am using the CRC8 example for FastCRC and comparing it to an online calculator that calculates the crc from a binary set of numbers.
Poly = x8 + x2 + x1 + 1
I don't get the same results.
/*
...
I have a binary String of "011001000010100100100010", 24 bits, how do I calculate CRC8? I tried using FastCRC but testing gives me the wrong results. I think it's because it is looking for bytes?
Thanks