2023-07-26 12:04 AM
I declared some test variable like,
unsigned short *testvar= (unsigned short *)0x20020074;
unsigned char *testvar1[4] = {(unsigned char *)0x20020076,(unsigned char *)0x20020077,
(unsigned char *)0x20020078,(unsigned char*)0x20020079};
but unfortunately in mid I left some part of the ram space and again declared a variable like,
unsigned short *testvar2= (unsigned short *)0x20020092;
I'm computing checksum from 0x20020074 to 0x20020092 and storing into flash , but 0x20020080 to 0x20020091 nowhere i'm declaring this space .is it create problem when i'm retrieving data from flash into ram?
2023-07-26 08:44 AM
Hello @madhavi U ,
Do you mean retrieving data from RAM to Flash? you may need to check this post Solved: Declaring variables in SRAM1-3 areas of H7 devices... - STMicroelectronics Community
Hope this helps!
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.