erpc/crc16.h

16 lines
253 B
C
Raw Permalink Normal View History

2024-10-29 08:42:21 +00:00
#ifndef _CRC_CRC16_H
#define _CRC_CRC16_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <stddef.h>
#include <stdint.h>
#include "config.h"
2024-12-08 01:14:22 +00:00
u16 crc16(u8 *buf,u16 crc, u32 len);
2024-10-29 08:42:21 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif