8#ifndef ZEPHYR_INCLUDE_BLUETOOTH_HCI_H_
9#define ZEPHYR_INCLUDE_BLUETOOTH_HCI_H_
37#if defined(CONFIG_BT_HCI_ERR_TO_STR)
Bluetooth device address definitions and utilities.
Bluetooth connection handling.
bool bt_hci_vnd_evt_cb_t(struct net_buf_simple *buf)
Callback type for vendor handling of HCI Vendor-Specific Events.
Definition hci.h:188
int bt_hci_get_adv_handle(const struct bt_le_ext_adv *adv, uint8_t *adv_handle)
Get advertising handle for an advertising set.
static const char * bt_hci_err_to_str(uint8_t hci_err)
Converts a HCI error to string.
Definition hci.h:40
struct bt_le_per_adv_sync * bt_hci_per_adv_sync_lookup_handle(uint16_t handle)
Get periodic advertising sync given an periodic advertising sync handle.
int bt_hci_le_rand(void *buffer, size_t len)
Get Random bytes from the LE Controller.
struct bt_conn * bt_hci_conn_lookup_handle(uint16_t handle)
Get connection given a connection handle.
int bt_hci_get_adv_sync_handle(const struct bt_le_per_adv_sync *sync, uint16_t *sync_handle)
Get periodic advertising sync handle.
struct net_buf * bt_hci_cmd_create(uint16_t opcode, uint8_t param_len)
Allocate a HCI command buffer.
struct bt_le_ext_adv * bt_hci_adv_lookup_handle(uint8_t handle)
Get advertising set given an advertising handle.
int bt_hci_cmd_send_sync(uint16_t opcode, struct net_buf *buf, struct net_buf **rsp)
Send a HCI command synchronously.
const char * bt_hci_get_ver_str(uint8_t core_version)
Obtain the version string given a core version number.
int bt_hci_get_conn_handle(const struct bt_conn *conn, uint16_t *conn_handle)
Get connection handle for a connection.
int bt_hci_register_vnd_evt_cb(bt_hci_vnd_evt_cb_t cb)
Register user callback for HCI Vendor-Specific Events.
int bt_hci_cmd_send(uint16_t opcode, struct net_buf *buf)
Send a HCI command asynchronously.
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Simple network buffer representation.
Definition net_buf.h:89
Network buffer representation.
Definition net_buf.h:1006