10 lines
227 B
C
10 lines
227 B
C
|
|
#ifndef __CRC_16_H
|
||
|
|
#define __CRC_16_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
extern uint16_t crc16(uint8_t *addr,uint32_t num); // 实时计算方式
|
||
|
|
extern uint16_t crc16_check(uint8_t* addr, uint32_t num); // 查表计算方式
|
||
|
|
|
||
|
|
#endif
|