CRC16.h 126 B

12345678910111213
  1. #ifndef _CRC16_H
  2. #define _CRC16_H
  3. #include "stdint.h"
  4. uint16_t Get_Crc16(uint8_t *puchMsg, uint16_t usDataLen);
  5. #endif