Hello,
I'm using the nrf connect SDK v2.5.0.
For historical reasons (devices working with the nrf5 stack at my clients), I would like to reserve part of the bytes located in my "app" partition:
app:
address: 0x27000
end_address: 0xE4000
region: flash_primary
size: 0xBD000
Actually I want addresses 0xD0000 to 0xD1000 to not contain any application data.
To explain why, it's because I plan to update the application of the devices running at my customers (devices running with a modified bootloader of the nrf5 sdk) to an application that is based on the nrf connect SDK. And the addresses 0xD0000 to 0xD1000 are modified by this old bootloader, so I have to find a way so that the bootloader does not overwrite the new application that I have loaded on the old devices.
Thank you