14 lines
247 B
C
14 lines
247 B
C
|
|
|
||
|
|
#ifndef __CRC_H__
|
||
|
|
#define __CRC_H__
|
||
|
|
|
||
|
|
#include "system.h"
|
||
|
|
|
||
|
|
extern const unsigned char CRC8_TABLE[256];
|
||
|
|
|
||
|
|
extern unsigned char data_crc8(volatile unsigned char *pSource, u16 NUM);
|
||
|
|
extern u16 CRC16_data(unsigned char *pL_string, u16 L_LEN);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|