I want to store data on a specific location in Flash, so it is available later on in a bootloader. The size of this data can be quite large (~ 300 kB). I'm kind of puzzled which API to use. Although there are several examples and topics on the DevZone, they seem all rather outdated.
Initial thought would be to use the sd_flash_write API directly, but that might conflict with the peer manager's use of the internal flash. I looked into the 'nrf_fstorage' package, but could not figure out how to configure the exact location in flash which is desired.
The peer_manager already calls nrf_fstorage_init with specific locations and size (3 kB, just below the bootloader).
Im using SDK 16.0. What would be the best approach?