Generate Hardware CRC from MCU and validate on other software system.
I have to generate CRC on MCU (STM32L476VG). I am using code as below for generating CRC.uint32_t HAL_CRC_Calculate(CRC_HandleTypeDef *hcrc, uint32_t pBuffer[], uint32_t BufferLength) { uint32_t temp = 0U; /* CRC output (read from hcrc->Instanc...