first commit

This commit is contained in:
2026-01-24 20:03:14 +08:00
commit a2224908e3
318 changed files with 278538 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef __CRC16_H__
#define __CRC16_H__
#include "./SYSTEM/sys/sys.h"
#include "./SYSTEM/delay/delay.h"
#define TRUE (1) /**< 真值定义 */
#define FALSE (0) /**< 假值定义 */
uint16_t Calculate_CRC(uint8_t *puchMsg, uint16_t usDataLen);
uint8_t Check_CRC(uint8_t *buf, uint16_t len);
#endif