![]() |
Midnight Sun Firmware
|
CRC library. More...
Enumerations | |
enum | CRCLength { CRC_LENGTH_8 , CRC_LENGTH_16 , CRC_LENGTH_32 , NUM_CRC_LENGTHS } |
CRC Length. More... | |
Functions | |
StatusCode | crc_init (CRCLength crc_length) |
Initilize the CRC API with default values. More... | |
uint32_t | crc_calculate (const uint32_t *data, size_t length) |
Calculate the CRC-32/16/8 checksum for a buffer of 32-bit values. More... | |
void | crc_reset (void) |
Reset the CRC hardware peripheral. More... | |
CRC library.
enum CRCLength |
uint32_t crc_calculate | ( | const uint32_t * | data, |
size_t | length | ||
) |
Calculate the CRC-32/16/8 checksum for a buffer of 32-bit values.
This expects the user to determine the number of CRC-length sized words in the data array. For example, if CRC is initialized with length 16, the user must divide the total size of the array by 2, for the number of 16-bit words
data | Pointer to the buffer of 32-bit words |
length | Number of CRC-length words in the buffer |
StatusCode crc_init | ( | CRCLength | crc_length | ) |
Initilize the CRC API with default values.
crc_length | Number of bits in the CRC |
void crc_reset | ( | void | ) |
Reset the CRC hardware peripheral.
This function forces a reset of the CRC peripheral and then releases the reset, ensuring that all CRC registers are cleared and reset to their default state.