BLE_LOG_EventCb_T

C

typedef void (*BLE_LOG_EventCb_T)(uint8_t logType, uint16_t logLength, uint8_t *p_logPayload);

Description

Callback type for BLE logging events.

This callback function is used to send BLE logging events to the application. It is triggered with the log data when a logging event occurs.

Parameters

ParameterDescription
[in] logTypeThe type of the log event. See BLE log types for value definitions.
[in] logLengthThe length of the log data payload in bytes.
[in] p_logPayloadPointer to the log data payload. This is the actual data associated with the log event.