File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
subsys/bluetooth/controller/ll_sw/nordic/lll Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -112,3 +112,6 @@ CONFIG_BT_CTLR_ISOAL_SOURCES=2
112
112
# ISO Receptions
113
113
CONFIG_BT_CTLR_ISO_RX_BUFFERS=8
114
114
CONFIG_BT_CTLR_ISOAL_SINKS=2
115
+
116
+ # Tx Power Dynamic Control
117
+ CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL=y
Original file line number Diff line number Diff line change @@ -104,3 +104,6 @@ CONFIG_BT_CTLR_ISOAL_SOURCES=2
104
104
# ISO Receptions
105
105
CONFIG_BT_CTLR_ISO_RX_BUFFERS=8
106
106
CONFIG_BT_CTLR_ISOAL_SINKS=2
107
+
108
+ # Tx Power Dynamic Control
109
+ CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL=y
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ static int prepare_cb(struct lll_prepare_param *p)
220
220
radio_reset ();
221
221
222
222
#if defined(CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL )
223
- radio_tx_power_set (cis_lll -> tx_pwr_lvl );
223
+ radio_tx_power_set (conn_lll -> tx_pwr_lvl );
224
224
#else /* !CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL */
225
225
radio_tx_power_set (RADIO_TXP_DEFAULT );
226
226
#endif /* !CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL */
@@ -986,7 +986,7 @@ static void isr_rx(void *param)
986
986
next_cis_lll -> rx .bn_curr = 1U ;
987
987
988
988
#if defined(CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL )
989
- radio_tx_power_set (next_cis_lll -> tx_pwr_lvl );
989
+ radio_tx_power_set (next_conn_lll -> tx_pwr_lvl );
990
990
#else
991
991
radio_tx_power_set (RADIO_TXP_DEFAULT );
992
992
#endif
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ static int prepare_cb(struct lll_prepare_param *p)
238
238
radio_reset ();
239
239
240
240
#if defined(CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL )
241
- radio_tx_power_set (cis_lll -> tx_pwr_lvl );
241
+ radio_tx_power_set (conn_lll -> tx_pwr_lvl );
242
242
#else /* !CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL */
243
243
radio_tx_power_set (RADIO_TXP_DEFAULT );
244
244
#endif /* !CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL */
You can’t perform that action at this time.
0 commit comments