This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

NRf51822 qfaa bootloader settings not working

I am trying to implement DFU for nrf51822 qfaa module
I have used sdk secure boot-loader example.
Its working on nrf51DK

but not working on nrf51822 qfaa module
sdk : 12.3.0

Parents Reply
  • I put delay

    void app_error_fault_handler(uint32_t id, uint32_t pc, uint32_t info)
    {
        NRF_LOG_ERROR("received a fault! id: 0x%08x, pc: 0x&08x\r\n", id, pc);
        nrf_delay_ms(2000);
        NVIC_SystemReset();
    }

    void app_error_handler_bare(uint32_t error_code)
    {
        (void)error_code;
        NRF_LOG_ERROR("received an error: 0x%08x!\r\n", error_code);
        nrf_delay_ms(2000);
        NVIC_SystemReset();
    }

    but not printed anything

Children
No Data
Related