I am trying to debug an app error in my code. I have an app_error_fault_handler that starts like this:
extern "C" void app_error_fault_handler(uint32_t id, uint32_t pc, uint32_t info) { if (id == NRF_FAULT_ID_SDK_ERROR) { error_info_t* err_info = (error_info_t*)info; LOG_E("Fatal Error in file %s, line %d", (const char*)err_info->p_file_name, err_info->line_num); switch (err_info->err_code) { case NRF_ERROR_SVC_HANDLER_MISSING: LOG_E("Error Code: NRF_ERROR_SVC_HANDLER_MISSING"); break;
00> <error> app: Fatal Error in file , line 0 00> <error> app: Error Code: NRF_ERROR_INVALID_STATE