Brother disks are now fully decoded and stitched together into images. Hurray!

This commit is contained in:
David Given
2018-10-27 02:15:01 +02:00
parent dde018e281
commit 0eecb0985d
6 changed files with 120 additions and 12 deletions

View File

@@ -2,8 +2,10 @@
#define CRC_H
#define CCITT_POLY 0x1021
#define BROTHER_POLY 0x000201
extern uint16_t crc16(uint16_t poly, const uint8_t* start, const uint8_t* end);
extern uint32_t crcbrother(const uint8_t* start, const uint8_t* end);
#endif