AceCRC
1.0
Cyclic Redundancy Check (CRC) algorithms (e.g. crc16ccitt, crc32) programmatically converted from C99 code generated by pycrc (https://pycrc.org) to Arduino C++ using namespaces and PROGMEM flash memory.
|
Go to the source code of this file.
Functions | |
crc_t | ace_crc::crc8_nibblem::crc_update (crc_t crc, const void *data, size_t data_len) |
Update the crc value with new data. More... | |
Functions and types for CRC checks.
Generated on Sat Feb 20 19:59:49 2021 by pycrc v0.9.2, https://pycrc.org using the configuration:
Auto converted to Arduino C++ on Sat Feb 20 19:59:49 PST 2021 by AceCRC (https://github.com/bxparks/AceCRC). DO NOT EDIT
Definition in file crc8_nibblem.cpp.
crc_t ace_crc::crc8_nibblem::crc_update | ( | crc_t | crc, |
const void * | data, | ||
size_t | data_len | ||
) |
Update the crc value with new data.
[in] | crc | The current crc value. |
[in] | data | Pointer to a buffer of data_len bytes. |
[in] | data_len | Number of bytes in the data buffer. |
Definition at line 37 of file crc8_nibblem.cpp.