38 #include <sysio/defs.h> 54 #define CRC_CCITT_INIT_VAL ((uint16_t)0xFFFF) 66 uint16_t
usCrcCcitt (uint16_t usCrc,
const void *pvBuf,
size_t uLen);
71 extern const uint16_t usCrcCcittTab[256];
79 return (oldcrc >> 8) ^ usCrcCcittTab[(oldcrc ^ c) & 0xff];
INLINE uint16_t usCrcCcittUpdate(uint8_t c, uint16_t oldcrc)
Compute the updated CRC-CCITT value for one octet (inline version)
uint16_t usCrcCcitt(uint16_t usCrc, const void *pvBuf, size_t uLen)