hi,
I am using Segger Embedded Studio and trying to store a data into flash memory by fstorage. For that i put the following in the flash_placement. xml file
<ProgramSection alignment="4" keep="Yes" load="Yes" name=".fs_data"
address_symbol="__start_fs_data" end_symbol="__stop_fs_data" />
and updated thumb_crt0.s file as ;
ldr r2, =__tdata_end__
bl memory_copy
# ADD HERE ...
ldr r0, =__fs_data_load_start__
ldr r1, =__fs_data_start__
ldr r2, =__fs_data_end__
bl memory_copy
# TO HERE ...
but i receive an error message like 'cannot load section placement file'.I am working with sdk 11. can i get any solution for this?