Skip to content

Commit

Permalink
doc: Doxygen fixes in conn.h
Browse files Browse the repository at this point in the history
Fixes the issue of some doxygen comments not being visible in the
documentation.

(cherry picked from commit d11c0a1)

Original-Signed-off-by: Uma Praseeda <uma.praseeda@nordicsemi.no>
GitOrigin-RevId: d11c0a1
Change-Id: I9c76437e374762faf570f643dcf980264258678c
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/4776634
Tested-by: ChromeOS Prod (Robot) <chromeos-ci-prod@chromeos-bot.iam.gserviceaccount.com>
Reviewed-by: Al Semjonovs <asemjonovs@google.com>
Commit-Queue: Al Semjonovs <asemjonovs@google.com>
Tested-by: Al Semjonovs <asemjonovs@google.com>
  • Loading branch information
umapraseeda authored and Chromeos LUCI committed Aug 14, 2023
1 parent 0174c4a commit 7ccc9b2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/zephyr/bluetooth/conn.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ enum {

/** Preferred PHY parameters for LE connections */
struct bt_conn_le_phy_param {
uint16_t options; /** Connection PHY options. */
uint8_t pref_tx_phy; /** Bitmask of preferred transmit PHYs */
uint8_t pref_rx_phy; /** Bitmask of preferred receive PHYs */
uint16_t options; /**< Connection PHY options. */
uint8_t pref_tx_phy; /**< Bitmask of preferred transmit PHYs */
uint8_t pref_rx_phy; /**< Bitmask of preferred receive PHYs */
};

/** Initialize PHY parameters
Expand Down Expand Up @@ -298,9 +298,9 @@ struct bt_conn_le_info {
const bt_addr_le_t *local;
/** Remote device address used during connection setup. */
const bt_addr_le_t *remote;
uint16_t interval; /** Connection interval */
uint16_t latency; /** Connection peripheral latency */
uint16_t timeout; /** Connection supervision timeout */
uint16_t interval; /**< Connection interval */
uint16_t latency; /**< Connection peripheral latency */
uint16_t timeout; /**< Connection supervision timeout */

#if defined(CONFIG_BT_USER_PHY_UPDATE)
const struct bt_conn_le_phy_info *phy;
Expand Down Expand Up @@ -329,7 +329,7 @@ struct bt_conn_le_info {

/** BR/EDR Connection Info Structure */
struct bt_conn_br_info {
const bt_addr_t *dst; /** Destination (Remote) BR/EDR address */
const bt_addr_t *dst; /**< Destination (Remote) BR/EDR address */
};

enum {
Expand Down

0 comments on commit 7ccc9b2

Please sign in to comment.