I enter to bootloader via my app by UART command:
err_code = sd_power_gpregret_clr(0, 0xffffffff);
APP_ERROR_CHECK(err_code);
err_code = sd_power_gpregret_set(0, 0xB1);
APP_ERROR_CHECK(err_code);
sd_nvic_SystemReset();
After that I see DfuTarg. But after about 1 second, advertising disappear. I need again send UART command for advertise.
I suppose, this problem in the bootloader_secure_ble, which I use. How to repare it?