 |
Demo HCI Implementation for WiMOD-LR Devices
V2.0.3
|
Go to the documentation of this file.
45 typedef uint8_t UINT8;
46 typedef uint16_t UINT16;
54 #define CRC16_INIT_VALUE 0xFFFF
55 #define CRC16_GOOD_VALUE 0x0F47
56 #define CRC16_POLYNOM 0x8408
#define CRC16_POLYNOM
16-BIT CRC CCITT POLYNOM
Definition: CRC16.h:56
bool CRC16_Check(UINT8 *data, UINT16 length, UINT16 initVal)
Calc & Check CRC16.
Definition: CRC16.cpp:222
#define CRC16_GOOD_VALUE
constant compare value for check
Definition: CRC16.h:55
UINT16 CRC16_Calc(UINT8 *data, UINT16 length, UINT16 initVal)
calculate CRC16
Definition: CRC16.cpp:134
bool CRC16_Check(UINT8 *data, UINT16 length, UINT16 initVal)
calculate & test CRC16
Definition: CRC16.cpp:222
UINT16 CRC16_Calc(UINT8 *data, UINT16 length, UINT16 initVal)
Calc CRC16.
Definition: CRC16.cpp:134