|
libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
|
#include <libopencm3/stm32/crc.h>
Go to the source code of this file.
Functions | |
| void | crc_reset (void) |
| Reset the CRC calculator to initial values. More... | |
| uint32_t | crc_calculate (uint32_t data) |
| Writes a data word to the register, the write operation stalling until the computation is complete. More... | |
| uint32_t | crc_calculate_block (uint32_t *datap, int size) |
| Add a block of data to the CRC calculator and return the final result. More... | |