Hi.. Everyone,
i am using nrf52 with softdevice 132. i used peer manager. i am able to able to flash softdevice, bootloader and application. but after that application file is not working on my board. i had also refer this links..
i also combine all file with this .hex file app_valid_setting_apply_nRF52832.hex
in my main.c file of bootloader ,i am writing
// This check ensures that the defined fields in the bootloader corresponds with actual
// setting in the chip.
APP_ERROR_CHECK_BOOL(*((uint32_t *)NRF_UICR_BOOT_START_ADDRESS) == BOOTLOADER_REGION_START);
APP_ERROR_CHECK_BOOL(NRF_FICR->CODEPAGESIZE == CODE_PAGE_SIZE);
if i write 0x01 manually to BOOTLOADER_SETTINGS_ADDRESS 0x0007F000 then it works after that
so what hex value should be in app_valid_setting_apply_nRF52832.hex file or there is another way to do it.
Thanks..