AceCRC  0.3.1
Cyclic Redundancy Check (CRC) algorithms (e.g. crc32(), crc16ccitt()) programmatically converted from C99 code generated by pycrc (https://pycrc.org) to Arduino C++ using namespaces and PROGMEM flash memory.
AceCRC.h
1 /*
2  * MIT License
3  * Copyright (c) 2020 Brian T. Park
4  */
5 
17 #ifndef ACE_CRC_ACE_CRC_H
18 #define ACE_CRC_ACE_CRC_H
19 
20 #include "ace_crc/crc8_bit.hpp"
21 #include "ace_crc/crc8_byte.hpp"
22 #include "ace_crc/crc8_nibble.hpp"
23 
27 
28 #include "ace_crc/crc32_bit.hpp"
29 #include "ace_crc/crc32_byte.hpp"
30 #include "ace_crc/crc32_nibble.hpp"
31 
32 // Version format: xxyyzz == "xx.yy.zz"
33 #define ACE_TIME_VERSION 301
34 #define ACE_TIME_VERSION_STRING "0.3.1"
35 
36 #endif
crc16ccitt_bit.hpp
crc32_nibble.hpp
crc8_nibble.hpp
crc32_bit.hpp
crc8_bit.hpp
crc16ccitt_nibble.hpp
crc16ccitt_byte.hpp
crc8_byte.hpp
crc32_byte.hpp