Smart Remote 3 nRF52 v1.2
Modules | Data Structures | Macros | Functions
Common application error handler

Common application error handler and macros for utilizing a common error handler. More...

Modules

 Fault ID types
 

Data Structures

struct  assert_info_t
 Structure containing info about an error of the type NRF_FAULT_ID_SDK_ASSERT. More...
 
struct  error_info_t
 Structure containing info about an error of the type NRF_FAULT_ID_SDK_ERROR. More...
 

Macros

#define APP_ERROR_CHECK(ERR_CODE)
 Macro for calling error handler function if supplied error code any other than NRF_SUCCESS. More...
 
#define APP_ERROR_CHECK_BOOL(BOOLEAN_VALUE)
 Macro for calling error handler function if supplied boolean value is false. More...
 
#define APP_ERROR_HANDLER(ERR_CODE)
 Macro for calling error handler function. More...
 
#define NRF_FAULT_ID_SDK_RANGE_START   0x00004000
 

Functions

void app_error_handler (uint32_t error_code, uint32_t line_num, const uint8_t *p_file_name)
 Function for error handling, which is called when an error has occurred. More...
 
void app_error_handler_bare (ret_code_t error_code)
 Function for error handling, which is called when an error has occurred. More...
 
void app_error_save_and_stop (uint32_t id, uint32_t pc, uint32_t info)
 Function for saving the parameters and entering an eternal loop, for debug purposes. More...
 

Detailed Description

Common application error handler and macros for utilizing a common error handler.

Macro Definition Documentation

#define APP_ERROR_CHECK (   ERR_CODE)
Value:
do \
{ \
const uint32_t LOCAL_ERR_CODE = (ERR_CODE); \
if (LOCAL_ERR_CODE != NRF_SUCCESS) \
{ \
APP_ERROR_HANDLER(LOCAL_ERR_CODE); \
} \
} while (0)

Macro for calling error handler function if supplied error code any other than NRF_SUCCESS.

Parameters
[in]ERR_CODEError code supplied to the error handler.
#define APP_ERROR_CHECK_BOOL (   BOOLEAN_VALUE)
Value:
do \
{ \
const uint32_t LOCAL_BOOLEAN_VALUE = (BOOLEAN_VALUE); \
if (!LOCAL_BOOLEAN_VALUE) \
{ \
APP_ERROR_HANDLER(0); \
} \
} while (0)

Macro for calling error handler function if supplied boolean value is false.

Parameters
[in]BOOLEAN_VALUEBoolean value to be evaluated.
#define APP_ERROR_HANDLER (   ERR_CODE)
Value:
do \
{ \
app_error_handler_bare((ERR_CODE)); \
} while (0)

Macro for calling error handler function.

Parameters
[in]ERR_CODEError code supplied to the error handler.
#define NRF_FAULT_ID_SDK_RANGE_START   0x00004000

The start of the range of error IDs defined in the SDK.

Function Documentation

void app_error_handler ( uint32_t  error_code,
uint32_t  line_num,
const uint8_t *  p_file_name 
)

Function for error handling, which is called when an error has occurred.

Parameters
[in]error_codeError code supplied to the handler.
[in]line_numLine number where the handler is called.
[in]p_file_namePointer to the file name.
void app_error_handler_bare ( ret_code_t  error_code)

Function for error handling, which is called when an error has occurred.

Parameters
[in]error_codeError code supplied to the handler.
void app_error_save_and_stop ( uint32_t  id,
uint32_t  pc,
uint32_t  info 
)

Function for saving the parameters and entering an eternal loop, for debug purposes.

Parameters
[in]idFault identifier. See NRF_FAULT_IDS.
[in]pcThe program counter of the instruction that triggered the fault, or 0 if unavailable.
[in]infoOptional additional information regarding the fault. Refer to each fault identifier for details.

Documentation feedback | Developer Zone | Subscribe | Updated