Nordic Semiconductor nRF5 AirFuel SDK
version 2.2.0
|
Go to the source code of this file.
Functions | |
void | HardFault_Handler () |
Hard Fault handler. More... | |
void | app_error_fault_handler (uint32_t id, uint32_t pc, uint32_t info) |
Callback function for asserts in the SoftDevice. More... | |
void | assert_nrf_callback (uint16_t line_num, const uint8_t *p_file_name) |
Assert macro callback function. More... | |
void HardFault_Handler | ( | ) |
Hard Fault handler.
Definition at line 27 of file wpt_error_handler.c.
void app_error_fault_handler | ( | uint32_t | id, |
uint32_t | pc, | ||
uint32_t | info | ||
) |
Callback function for asserts in the SoftDevice.
A pointer to this function will be passed to the SoftDevice. This function will be called by the SoftDevice if certain unrecoverable errors occur within the application or SoftDevice.
See nrf_fault_handler_t for more details.
[in] | id | Fault identifier. See NRF_FAULT_IDS. |
[in] | pc | The program counter of the instruction that triggered the fault, or 0 if unavailable. |
[in] | info | Optional additional information regarding the fault. Refer to each fault identifier for details. |
Definition at line 50 of file wpt_error_handler.c.
void assert_nrf_callback | ( | uint16_t | line_num, |
const uint8_t * | p_file_name | ||
) |
Assert macro callback function.
This function will be called in case of an assert in the SoftDevice.
[in] | line_num | Line number of the failing ASSERT call. |
[in] | p_file_name | File name of the failing ASSERT call. |
Definition at line 71 of file wpt_error_handler.c.