|
IoT Supervisor 0.0
|
#include <stdint.h>Go to the source code of this file.
Functions | |
| void | KirisakiCRC16Calc (uint8_t Data, uint16_t *CRC) |
Variables | |
| code const uint16_t | KirisakiCRCtable [256] |
| void KirisakiCRC16Calc | ( | uint8_t | Data, |
| uint16_t * | CRC | ||
| ) |
This function calculates the CRC based on the CRC table.
| [in] | Data | to continue CRC calculation on |
| [in,out] | CRC | pointer to CRC source and CRC output |
Definition at line 52 of file Kirisaki_CRC.c.
| code const uint16_t KirisakiCRCtable[256] |
CRC table, probably from crccalc.com
Definition at line 11 of file Kirisaki_CRC.c.