1 | /*
|
2 | * crc.h
|
3 | *
|
4 | * Created: 17.11.2016 22:30:45
|
5 | * Author: Bone
|
6 | */
|
7 | |
8 | |
9 | #ifndef CRC_H_
|
10 | #define CRC_H_
|
11 | |
12 | #define CRC16_POLYNOM 0x1002
|
13 | unsigned int crc16; |
14 | |
15 | |
16 | extern void InitCRC(void); |
17 | |
18 | extern void CalcCRC(unsigned char data); |
19 | |
20 | |
21 | |
22 | #endif /* CRC_H_ */ |