Hi
I would like to create bin file that contains: softdevice, bootloader, maIn application.
To do so i have programmed sofdevice and bootloader via JLink:
r
erase
loadfile "s132_nrf52_5.0.0_softdevice.hex", 0
loadfile "bootloader.hex"
go
Later i have programmed main app using NRFToolbox.
In next step i copy full image to file:
savebin "test.bin", 0x0, 0x7FFFF
Unfortunately when i try to use it (like blow) it does not work.
r
erase
loadfile "test.bin"
go