Magnificent7 / Hackathon
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers np_app_crc.h Source File

np_app_crc.h

00001 /*
00002  * np_app_crc.h
00003  *
00004  *  Created on: July 14, 2016
00005  *      Author: Alan.Lin
00006  *
00007  *  Copyright: NexPack Ltd.
00008  */
00009 
00010 #ifndef NP_APP_CRC_H_
00011 #define NP_APP_CRC_H_
00012 
00013 #ifdef __cplusplus
00014 extern "C" {
00015 #endif
00016 
00017 uint16_t np_function_crc_calculate(uint8_t* pData, uint16_t len);
00018 uint8_t np_function_crc_check(uint8_t* pData, uint16_t len, uint16_t crc_value);
00019 
00020 #ifdef __cplusplus
00021 }
00022 #endif
00023 
00024 #endif /* NP_APP_CRC_H_ */