deCONZ C++ API v2.6.1
Loading...
Searching...
No Matches
crc8.h
1#ifndef _CRC8_CALCS
2#define _CRC8_CALCS
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8uint8_t CRC8_Dallas(uint8_t crc, uint8_t *data, uint16_t length);
9
10#ifdef __cplusplus
11}
12#endif
13
14#endif // _CRC8_CALCS