00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef CRC16_H
00023 #define CRC16_H
00024
00025 namespace asctec
00026 {
00027 bool crc_valid (unsigned short packet_crc, void *data, unsigned short cnt);
00028 unsigned short crc_update (unsigned short crc, unsigned char data);
00029 unsigned short crc16 (void *data, unsigned short cnt);
00030 }
00031
00032 #endif // CRC16_H