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

I m getting error as "app_error_fault_handler" while executing custom service example.

void app_error_handler_bare(ret_code_t error_code)
{
    error_info_t error_info =
    {
        .line_num    = 0,
        .p_file_name = NULL,
        .err_code    = error_code,
    };

    app_error_fault_handler(NRF_FAULT_ID_SDK_ERROR, 0, (uint32_t)(&error_info));

    UNUSED_VARIABLE(error_info);
}

address:000265F0  F000F804    bl 0x00026F5C <app_error_fault_handler>

Related