Facing CRC checksum issue with STM32CubeIDE, it doesn't generate automatic checksum what are the steps need to follow generate checksum and attach end of the application. Do i need do any configuration in linker file Flash.ld ? please help me.
i am integrating STL XCUBE class-B 2.2.0 Packages with STM32L433 controller here issue with CRC test failing, what are configuration required to generate checksum attach end of application.
This patch i found in the SWSTM32 IDE linker file
/* check sum specified by user at the end of program in flash */
.check_sum :
{
. = ALIGN(64); /* alignement must correspond to the size of tested block at FLASH run time test */
PROVIDE( _Check_Sum = . );
/* check sum defined by user - see user manual */
LONG(0xefe89207);
} >FLASH
when i am adding in STM32CUBEIDE its giving the error please suggest me what could be the issue
