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

App fault problem

Hi nordic,


I am developing with nrf52832, s132,v15.2,0.I am using secure dfu bootloader. But its connecting in nrf_connect app, after connected, i got this below mention error and while uploading zip package from the nrf_connect app i getting GATT error.
I getting this error


  nrf_dfu_ble: No advertising name found
  nrf_dfu_ble: Using default advertising name
  nrf_dfu_ble: Advertising...
  nrf_dfu_ble: BLE DFU transport initialized.
  nrf_dfu_flash: Initializing nrf_fstorage_sd backend.
  app: Enter main loop
  nrf_dfu_ble: Connected
  app: Received a fault! id: 0x00004002, pc: 0x00000000, info: 0x2000FD10

Thanks and Regards,
Anitha

  • Hi Anitha,

    The fault id indicates that an NRF_FAULT_ID_SDK_ASSERT has occurred somewhere in your code. I'm not sure why this would happen upon connection, but you can read out the assert_info_t struct stored at 0x2000FD10 to find the line number and file name of where occurred. 

    E.g.,

    assert_info_t * p_info = (assert_info_t *) 0x2000FD10;
    NRF_LOG_ERROR("ASSERTION FAILED at %s:%u",
    p_info->p_file_name,
    p_info->line_num);

    Regards,

    Vidar

Related