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.
Functions
crc32_nibblem.cpp File Reference
#include "crc32_nibblem.hpp"
#include <stdlib.h>
#include <stdint.h>
Include dependency graph for crc32_nibblem.cpp:

Go to the source code of this file.

Functions

crc_t ace_crc::crc32_nibblem::crc_update (crc_t crc, const void *data, size_t data_len)
 Update the crc value with new data. More...
 

Detailed Description

Functions and types for CRC checks.

Generated on Sat Feb 20 18:01:52 2021 by pycrc v0.9.2, https://pycrc.org using the configuration:

Auto converted to Arduino C++ on Sat Feb 20 18:01:52 PST 2021 by AceCRC (https://github.com/bxparks/AceCRC). DO NOT EDIT

Definition in file crc32_nibblem.cpp.

Function Documentation

◆ crc_update()

crc_t ace_crc::crc32_nibblem::crc_update ( crc_t  crc,
const void *  data,
size_t  data_len 
)

Update the crc value with new data.

Parameters
[in]crcThe current crc value.
[in]dataPointer to a buffer of data_len bytes.
[in]data_lenNumber of bytes in the data buffer.
Returns
The updated crc value.

Definition at line 38 of file crc32_nibblem.cpp.