123456789101112131415161718192021222324252627 |
- #ifndef _SHELLMATTA_CRC_H_
- #define _SHELLMATTA_CRC_H_
- #include <stdint.h>
- #define CRC32_POLYNOM 0x04c11db7u
- #define CRC16_XMODEM_POLYNOM 0x1021u
- #define BITS_PER_BYTE ((uint8_t)8)
- uint32_t crc32Calc(const char* data, uint32_t size);
- uint16_t crc16Calc(const char* data, uint32_t size);
- #endif
|