19#include "app_config.h"
26uint16_t cx_crc16_update(uint16_t crc,
const void *buf,
size_t len)
28 return cx_crc_hw(CRC_TYPE_CRC16_CCITT_FALSE, crc, buf, len);
31uint16_t cx_crc16(
const void *buf,
size_t len)
33 return cx_crc_hw(CRC_TYPE_CRC16_CCITT_FALSE, CX_CRC16_INIT, buf, len);
CRC (Cyclic Redundancy Check).