Skip to content

Bluetooth: Doc: Update doxygen groups #88969

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion include/zephyr/bluetooth/bluetooth.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
extern "C" {
#endif

/**
* @defgroup bt_host Bluetooth Host
* @ingroup bluetooth
* @{
*/

/**
* @brief Generic Access Profile (GAP)
*
Expand All @@ -59,7 +65,7 @@ extern "C" {
* @defgroup bt_gap Generic Access Profile (GAP)
* @since 1.0
* @version 1.0.0
* @ingroup bluetooth
* @ingroup bt_host
* @{
*/

Expand Down Expand Up @@ -285,6 +291,16 @@ struct bt_le_ext_adv_cb {
#endif /* defined(CONFIG_BT_PER_ADV_RSP) */
};

/**
* bt_gap
* @}
*/

/**
* bt_host
* @}
*/

/**
* @typedef bt_ready_cb_t
* @brief Callback for notifying that Bluetooth has been enabled.
Expand Down Expand Up @@ -342,6 +358,11 @@ int bt_disable(void);
*/
bool bt_is_ready(void);

/**
* @addtogroup bt_gap
* @{
*/

/**
* @brief Set Bluetooth Device Name
*
Expand Down Expand Up @@ -3126,6 +3147,7 @@ int bt_le_per_adv_set_response_data(struct bt_le_per_adv_sync *per_adv_sync,
bool bt_le_bond_exists(uint8_t id, const bt_addr_le_t *addr);

/**
* bt_gap
* @}
*/

Expand Down
Loading