Files
player/Project/Src/MyApp/crc8_16.h

25 lines
208 B
C
Raw Normal View History

2025-06-27 00:32:57 +08:00
#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