mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-04-19 01:01:30 +02:00
8 lines
219 B
C
8 lines
219 B
C
#ifndef CRC_H_
|
|
#define CRC_H_
|
|
|
|
uint8_t crc5(uint8_t *data, uint8_t len);
|
|
unsigned short crc16(const unsigned char *buffer, int len);
|
|
unsigned short crc16_false(const unsigned char *buffer, int len);
|
|
|
|
#endif // PRETTY_H_
|