changed low freq. clock source to IRC

Dependents:   BLE_ANCS_SDAPI_IRC

Fork of nRF51822 by Nordic Semiconductor

Embed: (wiki syntax)

« Back to documentation index

ble_error_log_data_t Struct Reference

ble_error_log_data_t Struct Reference
[Error Log Module]

Error Log Data structure. More...

#include <ble_error_log.h>

Data Fields

uint16_t failure
 Indication that a major failure has occurred during last execution of the application.
uint16_t line_number
 Line number indicating at which line the failure occurred.
uint32_t err_code
 Error code when failure occurred.
uint8_t message [ERROR_MESSAGE_LENGTH]
 Will just use the first 128 bytes of filename to store for debugging purposes.
uint32_t stack_info [STACK_DUMP_LENGTH/4]
 Will contain stack information, can be manually unwinded for debug purposes.

Detailed Description

Error Log Data structure.

The structure contains the error, message/filename, line number as well as the current stack, at the time where an error occured.

Definition at line 41 of file ble_error_log.h.


Field Documentation

uint32_t err_code

Error code when failure occurred.

Definition at line 45 of file ble_error_log.h.

uint16_t failure

Indication that a major failure has occurred during last execution of the application.

Definition at line 43 of file ble_error_log.h.

uint16_t line_number

Line number indicating at which line the failure occurred.

Definition at line 44 of file ble_error_log.h.

uint8_t message[ERROR_MESSAGE_LENGTH]

Will just use the first 128 bytes of filename to store for debugging purposes.

Definition at line 46 of file ble_error_log.h.

uint32_t stack_info[STACK_DUMP_LENGTH/4]

Will contain stack information, can be manually unwinded for debug purposes.

Definition at line 47 of file ble_error_log.h.