diff --git a/apps/controller_info.py b/apps/controller_info.py index 9ac0882b..89c830c9 100644 --- a/apps/controller_info.py +++ b/apps/controller_info.py @@ -75,7 +75,7 @@ async def get_classic_info(host: Host) -> None: if command_succeeded(response): print() print( - color('Classic Address:', 'yellow'), + color('Public Address:', 'yellow'), response.return_parameters.bd_addr.to_string(False), ) diff --git a/bumble/hci.py b/bumble/hci.py index 24f91fa4..87c6aad6 100644 --- a/bumble/hci.py +++ b/bumble/hci.py @@ -129,6 +129,7 @@ def phy_list_to_bits(phys: Optional[Iterable[int]]) -> int: HCI_VERSION_BLUETOOTH_CORE_5_2 = 11 HCI_VERSION_BLUETOOTH_CORE_5_3 = 12 HCI_VERSION_BLUETOOTH_CORE_5_4 = 13 +HCI_VERSION_BLUETOOTH_CORE_6_0 = 14 HCI_VERSION_NAMES = { HCI_VERSION_BLUETOOTH_CORE_1_0B: 'HCI_VERSION_BLUETOOTH_CORE_1_0B', @@ -145,6 +146,7 @@ def phy_list_to_bits(phys: Optional[Iterable[int]]) -> int: HCI_VERSION_BLUETOOTH_CORE_5_2: 'HCI_VERSION_BLUETOOTH_CORE_5_2', HCI_VERSION_BLUETOOTH_CORE_5_3: 'HCI_VERSION_BLUETOOTH_CORE_5_3', HCI_VERSION_BLUETOOTH_CORE_5_4: 'HCI_VERSION_BLUETOOTH_CORE_5_4', + HCI_VERSION_BLUETOOTH_CORE_6_0: 'HCI_VERSION_BLUETOOTH_CORE_6_0', } # LMP Version