2016-05-21 03:11 AM
I would read and write about 10kB of 64kB SRAM internal with STM32F103ZE.
This micro have the SRAM at start address 0x20000000.How can I use and save the area of RAM, sure this area isn't changed in real time during the program is running? What commands should I use?Thank so much.2016-05-21 07:42 AM
Ok, so create a static allocation, dynamically allocate from the heap with malloc, or carve out memory in the linker script or scatter file.
Verify the content with a checksum, CRC, or hash of the region. Use as an array or pointer.