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.

Signed-off-by: Uma Praseeda <[email protected]>
  • Loading branch information
umapraseeda authored and carlescufi committed Aug 12, 2023
1 parent 2b757f1 commit d11c0a1
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 d11c0a1

Please sign in to comment.