![]() |
The foxBMS secondary mcu API documentation
|
Header for the driver for the checksum calculation. More...
Go to the source code of this file.
Data Structures | |
struct | CHK_STATUS_s |
Enumerations | |
enum | CHK_CHECKSUM_STATUS_e { CHK_CHECKSUM_FAILED = 0xFF, CHK_CHECKSUM_PASSED = 0x00 } |
Functions | |
uint32_t | CHK_crc32 (uint8_t *data, uint32_t len) |
CHK_crc32 provides crc32 algorithm. More... | |
STD_RETURN_TYPE_e | CHK_Flashchecksum (const VER_ValidStruct_s *valid_struct) |
CHK_Flashchecksum provides validation for the currently used firmware. More... | |
Variables | |
CHK_STATUS_s | chk_status |
Header for the 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®″
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
CHK_STATUS_s chk_status |