crc16.h 260 B

123456789101112131415161718
  1. #ifndef __CRC16_H__
  2. #define __CRC16_H__
  3. #include "../swapi/include_swapiLib.h"
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. // implementation of CRC16 function
  9. uint16_t CRC16(uint8_t *pucFrame, uint16_t usLen);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif // __CRC16_H__