Skip to content

Commit c4cc6ef

Browse files
[nrf fromtree] bluetooth: host: Fix values for minimizing/maximizing TX power
The values were swapped, leading to the opposite of the intended behavior Signed-off-by: Olivier Lesage <[email protected]> (cherry picked from commit 51a0e94)
1 parent ad891a3 commit c4cc6ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/zephyr/bluetooth/hci_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2463,8 +2463,8 @@ struct bt_hci_cp_le_read_remote_fae_table {
24632463
#define BT_HCI_OP_LE_CS_CS_SYNC_2M 0x2
24642464
#define BT_HCI_OP_LE_CS_CS_SYNC_2M_2BT 0x3
24652465

2466-
#define BT_HCI_OP_LE_CS_TEST_MAXIMIZE_TX_POWER 0x7E
2467-
#define BT_HCI_OP_LE_CS_TEST_MINIMIZE_TX_POWER 0x7F
2466+
#define BT_HCI_OP_LE_CS_TEST_MINIMIZE_TX_POWER 0x7E
2467+
#define BT_HCI_OP_LE_CS_TEST_MAXIMIZE_TX_POWER 0x7F
24682468

24692469
#define BT_HCI_OP_LE_CS_TEST_ACI_0 0x0
24702470
#define BT_HCI_OP_LE_CS_TEST_ACI_1 0x1

0 commit comments

Comments
 (0)