user_crc16.h 229 B

1234567891011121314
  1. #ifndef CRC16_H
  2. #define CRC16_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. unsigned short GetCRC16(unsigned char *puchMsg, unsigned short usDataLen, unsigned short first);
  7. #ifdef __cplusplus
  8. }
  9. #endif
  10. #endif