bumble 0.0.194__py3-none-any.whl → 0.0.195__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bumble/_version.py +2 -2
- bumble/apps/auracast.py +407 -0
- bumble/apps/bench.py +77 -23
- bumble/apps/controller_info.py +3 -3
- bumble/core.py +689 -115
- bumble/device.py +441 -12
- bumble/hci.py +250 -12
- bumble/host.py +25 -0
- bumble/pandora/host.py +3 -2
- bumble/profiles/bap.py +101 -5
- bumble/profiles/le_audio.py +49 -0
- bumble/profiles/pbp.py +46 -0
- bumble/rfcomm.py +10 -1
- {bumble-0.0.194.dist-info → bumble-0.0.195.dist-info}/METADATA +1 -1
- {bumble-0.0.194.dist-info → bumble-0.0.195.dist-info}/RECORD +19 -16
- {bumble-0.0.194.dist-info → bumble-0.0.195.dist-info}/LICENSE +0 -0
- {bumble-0.0.194.dist-info → bumble-0.0.195.dist-info}/WHEEL +0 -0
- {bumble-0.0.194.dist-info → bumble-0.0.195.dist-info}/entry_points.txt +0 -0
- {bumble-0.0.194.dist-info → bumble-0.0.195.dist-info}/top_level.txt +0 -0
bumble/apps/controller_info.py
CHANGED
|
@@ -27,7 +27,7 @@ from bumble.colors import color
|
|
|
27
27
|
from bumble.core import name_or_number
|
|
28
28
|
from bumble.hci import (
|
|
29
29
|
map_null_terminated_utf8_string,
|
|
30
|
-
|
|
30
|
+
LeFeature,
|
|
31
31
|
HCI_SUCCESS,
|
|
32
32
|
HCI_VERSION_NAMES,
|
|
33
33
|
LMP_VERSION_NAMES,
|
|
@@ -140,7 +140,7 @@ async def get_le_info(host: Host) -> None:
|
|
|
140
140
|
|
|
141
141
|
print(color('LE Features:', 'yellow'))
|
|
142
142
|
for feature in host.supported_le_features:
|
|
143
|
-
print(
|
|
143
|
+
print(f' {LeFeature(feature).name}')
|
|
144
144
|
|
|
145
145
|
|
|
146
146
|
# -----------------------------------------------------------------------------
|
|
@@ -224,7 +224,7 @@ async def async_main(latency_probes, transport):
|
|
|
224
224
|
print()
|
|
225
225
|
print(color('Supported Commands:', 'yellow'))
|
|
226
226
|
for command in host.supported_commands:
|
|
227
|
-
print('
|
|
227
|
+
print(f' {HCI_Command.command_name(command)}')
|
|
228
228
|
|
|
229
229
|
|
|
230
230
|
# -----------------------------------------------------------------------------
|