Hi,
I'm trying to write custom boot loader, that receiving hex file via uart and write it to location 0x40000 and then jumps to the location. I changed FLASH_ADDRESS and FLASH_PH_ADDRESS to 0x40000 and built two applications from examples: blinky_pca10056 and led_softblink_pca10056. To jump to application I uses command nrf_bootloader_app_start_impl(0x40000). The problem is: blinky_pca10056 is started and running, but softblink_pca10056 is started (I can see that all 4 leds are on), but it is not running. I'm using in SEGGER. Should I do so operations before I call nrf_bootloader_app_start_impl? Any ideas?
Thank you.