ucrc16 definitions More...
ucrc16 definitions
Definition in file ucrc16.h.
#include <stdint.h>
#include <stdlib.h>
Go to the source code of this file.
Functions | |
uint16_t | ucrc16_calc_be (const uint8_t *buf, size_t len, uint16_t poly, uint16_t seed) |
Calculate CRC16 (big-endian version) More... | |
uint16_t | ucrc16_calc_le (const uint8_t *buf, size_t len, uint16_t poly, uint16_t seed) |
Calculate CRC16 (little-endian version) More... | |
#define | UCRC16_CCITT_POLY_BE (0x1021) |
Various generator polynomials. More... | |
#define | UCRC16_CCITT_POLY_LE (0x8408) |
CRC16-CCITT polynomial (little-endian) | |