+uint32_t crc_finish(crc_t *crc) {
+ uint32_t val = crc->state;
+ if (crc->refout) val = reflect(val, crc->order);
+ return ( val ^ crc->final_xor ) & crc->mask;
+}
+
+/*
+static void print_crc(crc_t *crc) {
+ printf(" Order %d\n Poly %x\n Init %x\n Final %x\n Mask %x\n topbit %x\n RefIn %s\n RefOut %s\n State %x\n",
+ crc->order,
+ crc->polynom,
+ crc->initial_value,
+ crc->final_xor,
+ crc->mask,
+ crc->topbit,
+ (crc->refin) ? "TRUE":"FALSE",
+ (crc->refout) ? "TRUE":"FALSE",
+ crc->state
+ );
+}
+*/
+
+// width=8 poly=0x31 init=0x00 refin=true refout=true xorout=0x00 check=0xA1 name="CRC-8/MAXIM"
+uint32_t CRC8Maxim(uint8_t *buff, size_t size) {
+ crc_t crc;
+ crc_init_ref(&crc, 8, 0x31, 0, 0, TRUE, TRUE);
+ for ( int i=0; i < size; ++i)
+ crc_update(&crc, buff[i], 8);
+ return crc_finish(&crc);
+}
+
+
+// width=4 poly=0xC, reversed poly=0x7 init=0x5 refin=true refout=true xorout=0x0000 check= name="CRC-4/LEGIC"
+// width=8 poly=0x63, reversed poly=0x8D init=0x55 refin=true refout=true xorout=0x0000 check=0xC6 name="CRC-8/LEGIC"
+// the CRC needs to be reversed before returned.
+uint32_t CRC8Legic(uint8_t *buff, size_t size) {
+ crc_t crc;
+ crc_init_ref(&crc, 8, 0x63, 0x55, 0, TRUE, TRUE);
+ for ( int i = 0; i < size; ++i)
+ crc_update(&crc, buff[i], 8);
+ return reflect(crc_finish(&crc), 8);