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
| Parameter | Description |
|---|---|
| [in] logType | The type of the log event. See BLE log types for value definitions. |
| [in] logLength | The length of the log data payload in bytes. |
| [in] p_logPayload | Pointer to the log data payload. This is the actual data associated with the log event. |
