Bluetooth: host: Add enum for LE read transmit power PHY values
Add enum for LE Read Transmit Power phy values, which are different form the values used for PHY update procedure since it includes values for the LE Coded PHY coding schemes. Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
parent
ac88b86179
commit
ae841d0a11
1 changed files with 13 additions and 0 deletions
|
@ -370,6 +370,19 @@ struct bt_conn_remote_info {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum bt_conn_le_tx_power_phy {
|
||||||
|
/** Convenience macro for when no PHY is set. */
|
||||||
|
BT_CONN_LE_TX_POWER_PHY_NONE,
|
||||||
|
/** LE 1M PHY */
|
||||||
|
BT_CONN_LE_TX_POWER_PHY_1M,
|
||||||
|
/** LE 2M PHY */
|
||||||
|
BT_CONN_LE_TX_POWER_PHY_2M,
|
||||||
|
/** LE Coded PHY using S=8 coding. */
|
||||||
|
BT_CONN_LE_TX_POWER_PHY_CODED_S8,
|
||||||
|
/** LE Coded PHY using S=2 coding. */
|
||||||
|
BT_CONN_LE_TX_POWER_PHY_CODED_S2,
|
||||||
|
};
|
||||||
|
|
||||||
/** LE Transmit Power Level Structure */
|
/** LE Transmit Power Level Structure */
|
||||||
struct bt_conn_le_tx_power {
|
struct bt_conn_le_tx_power {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue