Logo white

yuhang / iot-gateway-rtthread-bootloader

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • iot-gateway-rtthread-bootloader
  • SYSTEM
  • CRC
  • crc.h
  • .
    adfcbf51
    yuhang authored
    2021-04-21 15:52:25 +0800  
    Browse Code ยป
crc.h 226 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef		__CRC16_H__
#define		__CRC16_H__

#include "dev.h"

#ifdef   __cplusplus
extern "C" {
#endif

	
	
uint16_t GenerateCRC16(const uint8_t *pdata, uint16_t len);

	
	
#ifdef   __cplusplus
}
#endif


#endif	//__CRC16_H__