Fix the bit ID of the HCI_LE_Read_ISO_Link_QUALITY command to match the assigned value defined in Supported_Commands table in the Bluetooth Core Specification. --- monitor/bt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/bt.h b/monitor/bt.h index bc84d6b94..dd67750dc 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -2920,7 +2920,7 @@ struct bt_hci_cmd_le_set_host_feature { } __attribute__ ((packed)); #define BT_HCI_CMD_LE_READ_ISO_LINK_QUALITY 0x2075 -#define BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY BT_HCI_CMD_BIT(45, 1) +#define BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY BT_HCI_CMD_BIT(44, 2) struct bt_hci_cmd_le_read_iso_link_quality { uint16_t handle; } __attribute__ ((packed)); -- 2.34.1