25 lines
208 B
C
25 lines
208 B
C
|
#ifndef _crc16_H
|
||
|
#define _crc16_H
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
void Get_Crc16(u8 *puchMsg,u16 usDataLen,u8 result[]);
|
||
|
u8 Get_Crc8(u8 *ptr,u16 len);
|
||
|
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|