Infuse-IoT SDK API 0.0.1
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
bluetooth_conn_log.h
Go to the documentation of this file.
1
10#ifndef INFUSE_SDK_INCLUDE_INFUSE_AUTO_BLUETOOTH_CONN_LOG_H_
11#define INFUSE_SDK_INCLUDE_INFUSE_AUTO_BLUETOOTH_CONN_LOG_H_
12
13#include <stdint.h>
14
15#include <zephyr/sys/util.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
27enum {
28 /* Automatically flush the logger when logging events */
30};
31
38void auto_bluetooth_conn_log_configure(uint8_t tdf_logger_mask, uint8_t flags);
39
44#ifdef __cplusplus
45}
46#endif
47
48#endif /* INFUSE_SDK_INCLUDE_INFUSE_AUTO_BLUETOOTH_CONN_LOG_H_ */
void auto_bluetooth_conn_log_configure(uint8_t tdf_logger_mask, uint8_t flags)
Automatically log Bluetooth connection events.
@ AUTO_BT_CONN_LOG_EVENTS_FLUSH
Definition bluetooth_conn_log.h:29