![]() |
The foxBMS secondary mcu API documentation
|
Driver for the checksum calculation. More...
Functions | |
uint32_t | CHK_modulo32addition (uint8_t *data, uint32_t len) |
CHK_modulo32addition provides modulo32bitaddition algorithm. More... | |
STD_RETURN_TYPE_e | CHK_Flashchecksum (const VER_ValidStruct_s *valid_struct) |
CHK_Flashchecksum provides validation for the currently used firmware. More... | |
uint32_t | CHK_crc32 (uint8_t *data, uint32_t len) |
CHK_crc32 provides crc32 algorithm. More... | |
Variables | |
CHK_STATUS_s | chk_status |
Driver for the checksum calculation.
BSD 3-Clause License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:
″This product uses parts of foxBMS®″
″This product includes parts of foxBMS®″
″This product is derived from foxBMS®″
This module provides some checksum functionality using either modulo32bitaddition as fast and easy algorithm or hardware supported crc32.
uint32_t CHK_crc32 | ( | uint8_t * | data, |
uint32_t | len | ||
) |
CHK_crc32 provides crc32 algorithm.
This function provides crc32 checksum functionality with hardware support. It has been modified to match the common implementations used in zlib/WinZip/... RCC_CRC_CLK needs to be enabled.
STD_RETURN_TYPE_e CHK_Flashchecksum | ( | const VER_ValidStruct_s * | valid_struct | ) |
CHK_Flashchecksum provides validation for the currently used firmware.
This function gets called during startup and validates the currently used firmware by doing a checksum over pre-defined memory areas and compares result with a pre-calculated checksum stored in the flashheader
uint32_t CHK_modulo32addition | ( | uint8_t * | data, |
uint32_t | len | ||
) |
CHK_modulo32addition provides modulo32bitaddition algorithm.
This function provides some basic checksum functionality using module32bitaddition algorithm. It has no hardware dependencies.
CHK_STATUS_s chk_status |