Files
player/Project/Src/MyApp/crc8_16.h
andy 045cff4cc6 整理代码
1.解决一些编译警告
2.发现png因为文件api不支持而不能使用
2025-10-18 13:58:40 +08:00

18 lines
251 B
C

#ifndef _crc16_H
#define _crc16_H
#ifdef __cplusplus
extern "C" {
#endif
#include "stdint.h"
void Get_Crc16(uint8_t *puchMsg, uint16_t usDataLen, uint8_t result[]);
uint8_t Get_Crc8(uint8_t *ptr, uint16_t len);
#ifdef __cplusplus
}
#endif
#endif