When my program hits an error returned by an NRF API call, I get a hex number corresponding to that error from the app_error.c:
case NRF_FAULT_ID_SDK_ERROR:
m_error_data.p_error_info = (error_info_t *)info;
m_error_data.err_code = m_error_data.p_error_info->err_code;
m_error_data.line_num = m_error_data.p_error_info->line_num;
m_error_data.p_file_name = m_error_data.p_error_info->p_file_name;
printf("sdk error %08x: line %d at %s\r\n",
m_error_data.err_code, m_error_data.line_num, m_error_data.p_file_name);
break;
Is there a list of those codes so that I can easily find out what a specific code means? For example, now I get an err_code 0x00000011 and cannot find out what does it mean.