Skip to content

Latest commit

 

History

History
87 lines (61 loc) · 1.85 KB

bluetooth.rst

File metadata and controls

87 lines (61 loc) · 1.85 KB

Bluetooth API

This is the full set of available Bluetooth APIs. It's important to note that the set that will in practice be available for the application depends on the exact Kconfig options that have been chosen, since most of the Bluetooth functionality is build-time selectable. E.g. any connection-related APIs require :option:`CONFIG_BT_CONN` and any BR/EDR (Bluetooth Classic) APIs require :option:`CONFIG_BT_BREDR`.

.. doxygengroup:: bt_gap
   :project: Zephyr

.. doxygengroup:: bt_conn
   :project: Zephyr

.. doxygengroup:: bt_gatt
   :project: Zephyr

.. doxygengroup:: bt_mesh
   :project: Zephyr

.. doxygengroup:: bt_uuid
   :project: Zephyr

.. doxygengroup:: bt_l2cap
   :project: Zephyr

.. doxygengroup:: bt_rfcomm
   :project: Zephyr

.. doxygengroup:: bt_buf
   :project: Zephyr

.. doxygengroup:: bt_storage
   :project: Zephyr

.. doxygengroup:: bt_hci_driver
   :project: Zephyr

HCI RAW channel API is intended to expose HCI interface to the remote entity. The local Bluetooth controller gets owned by the remote entity and host Bluetooth stack is not used. RAW API provides direct access to packets which are sent and received by the Bluetooth HCI driver.

.. doxygengroup:: hci_raw
   :project: Zephyr