mirror of
https://github.com/radiomanV/TL866.git
synced 2026-02-20 01:31:36 +01:00
13 lines
159 B
C++
13 lines
159 B
C++
#ifndef CRC16_H
|
|
#define CRC16_H
|
|
|
|
class CRC16
|
|
{
|
|
public:
|
|
static unsigned short crc16(const unsigned char *data, unsigned int length);
|
|
|
|
|
|
};
|
|
|
|
#endif // CRC16_H
|