From bba23c8ec6c1e919150bbc536c06d27dc30ea484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Kopy=C5=9Bci=C5=84ski?= Date: Mon, 25 Mar 2024 07:12:39 +0100 Subject: [PATCH] audio/ble_audio.h: fix doxygen reference for ble_audio_base_bis_iter @ref was missing, and to make all file visible to doxygen defgroup bt_le_audio was added. --- nimble/host/audio/include/audio/ble_audio.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/nimble/host/audio/include/audio/ble_audio.h b/nimble/host/audio/include/audio/ble_audio.h index 080318dbe..ca7087641 100644 --- a/nimble/host/audio/include/audio/ble_audio.h +++ b/nimble/host/audio/include/audio/ble_audio.h @@ -23,6 +23,16 @@ #include #include +/** + * @file ble_audio.h + * + * @brief Bluetooth Low Energy Audio API + * + * @defgroup bt_le_audio Bluetooth LE Audio + * @ingroup bt_host + * @{ + */ + /** * @cond * Helper macros for BLE_AUDIO_BUILD_CODEC_CONFIG @@ -644,7 +654,7 @@ int ble_audio_event_listener_unregister(struct ble_audio_event_listener *listene * BASE iterator * * The iterator structure used by @ref ble_audio_base_subgroup_iter and - * @ble_audio_base_bis_iter functions to iterate the BASE Level 2 and 3 elements + * @ref ble_audio_base_bis_iter functions to iterate the BASE Level 2 and 3 elements * (Subgroups and BISes). * This should be used as an opaque structure and not modified manually. * @@ -825,4 +835,6 @@ struct ble_audio_base { STAILQ_HEAD(, ble_audio_big_subgroup) subs; }; +/** @} */ + #endif /* H_BLE_AUDIO_ */