bumble 0.0.223__tar.gz → 0.0.224__tar.gz
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-0.0.223 → bumble-0.0.224}/PKG-INFO +4 -3
- {bumble-0.0.223 → bumble-0.0.224}/apps/controller_info.py +90 -114
- {bumble-0.0.223 → bumble-0.0.224}/apps/controller_loopback.py +11 -9
- {bumble-0.0.223 → bumble-0.0.224}/apps/gg_bridge.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/apps/hci_bridge.py +3 -1
- {bumble-0.0.223 → bumble-0.0.224}/apps/l2cap_bridge.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/apps/rfcomm_bridge.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/apps/scan.py +10 -4
- {bumble-0.0.223 → bumble-0.0.224}/apps/speaker/speaker.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/bumble/_version.py +3 -3
- {bumble-0.0.223 → bumble-0.0.224}/bumble/avrcp.py +366 -190
- {bumble-0.0.223 → bumble-0.0.224}/bumble/bridge.py +10 -2
- {bumble-0.0.223 → bumble-0.0.224}/bumble/controller.py +14 -1
- {bumble-0.0.223 → bumble-0.0.224}/bumble/core.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/bumble/device.py +998 -573
- {bumble-0.0.223 → bumble-0.0.224}/bumble/drivers/intel.py +45 -39
- {bumble-0.0.223 → bumble-0.0.224}/bumble/drivers/rtk.py +76 -40
- {bumble-0.0.223 → bumble-0.0.224}/bumble/hci.py +1318 -796
- {bumble-0.0.223 → bumble-0.0.224}/bumble/host.py +329 -157
- {bumble-0.0.223 → bumble-0.0.224}/bumble/l2cap.py +10 -5
- {bumble-0.0.223 → bumble-0.0.224}/bumble/smp.py +8 -3
- {bumble-0.0.223 → bumble-0.0.224}/bumble/snoop.py +111 -1
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/android_netsim.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/bumble/vendor/android/hci.py +108 -86
- {bumble-0.0.223 → bumble-0.0.224}/bumble/vendor/zephyr/hci.py +24 -18
- {bumble-0.0.223 → bumble-0.0.224}/bumble.egg-info/PKG-INFO +4 -3
- {bumble-0.0.223 → bumble-0.0.224}/bumble.egg-info/SOURCES.txt +1 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble.egg-info/requires.txt +7 -2
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/heart_rate_monitor/heart_rate_monitor.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224/docs/mkdocs/src/hive}/web/scanner/scanner.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224/docs/mkdocs/src/hive}/web/speaker/speaker.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/zephyr.md +3 -3
- {bumble-0.0.223 → bumble-0.0.224}/examples/device_information_server.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_a2dp_sink.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_a2dp_source.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_advertiser.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_avrcp.py +24 -22
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_classic_discoverable.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_classic_discovery.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_connect_and_encrypt.py +1 -1
- bumble-0.0.224/examples/run_connection_updates.py +201 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_controller.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_device_with_snooper.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_gatt_server.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_gatt_server_with_pairing_delegate.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_gatt_with_adapters.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_hfp_handsfree.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_hid_device.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_hid_host.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_rfcomm_client.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_rfcomm_server.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_scanner.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/pyproject.toml +7 -2
- {bumble-0.0.223 → bumble-0.0.224}/tests/avrcp_test.py +214 -1
- {bumble-0.0.223 → bumble-0.0.224}/tests/device_test.py +7 -6
- {bumble-0.0.223 → bumble-0.0.224}/tests/hci_test.py +56 -45
- {bumble-0.0.223 → bumble-0.0.224}/tests/host_test.py +127 -2
- {bumble-0.0.223 → bumble-0.0.224}/web/heart_rate_monitor/heart_rate_monitor.py +1 -1
- {bumble-0.0.223/docs/mkdocs/src/hive → bumble-0.0.224}/web/scanner/scanner.py +1 -1
- {bumble-0.0.223/docs/mkdocs/src/hive → bumble-0.0.224}/web/speaker/speaker.py +1 -1
- {bumble-0.0.223 → bumble-0.0.224}/.devcontainer/devcontainer.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.git-blame-ignore-revs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/ci-gradle.properties +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/workflows/code-check.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/workflows/codeql-analysis.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/workflows/gradle-btbench.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/workflows/python-avatar.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/workflows/python-build-test.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.github/workflows/python-publish.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/.vscode/settings.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/CONTRIBUTING.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/LICENSE +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/auracast.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/bench.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/ble_rpa_tool.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/console.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/controllers.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/device_info.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/gatt_dump.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/lea_unicast/app.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/lea_unicast/index.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/pair.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/pandora_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/player/player.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/show.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/speaker/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/speaker/logo.svg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/speaker/speaker.css +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/speaker/speaker.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/speaker/speaker.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/unbond.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/apps/usb_probe.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/a2dp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/at.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/att.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/audio/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/audio/io.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/avc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/avctp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/avdtp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/codecs.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/colors.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/company_ids.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/crypto/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/crypto/builtin.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/crypto/cryptography.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/data_types.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/decoder.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/drivers/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/drivers/common.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/gap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/gatt.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/gatt_adapters.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/gatt_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/gatt_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/helpers.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/hfp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/hid.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/keys.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/link.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/ll.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/lmp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/logging.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pairing.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/config.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/device.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/host.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/l2cap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/py.typed +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/security.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/pandora/utils.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/aics.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/ams.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/ancs.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/ascs.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/asha.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/bap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/bass.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/battery_service.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/cap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/csip.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/device_information_service.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/gap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/gatt_service.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/gmap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/hap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/heart_rate_service.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/le_audio.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/mcp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/pacs.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/pbp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/py.typed +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/tmap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/vcs.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/profiles/vocs.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/py.typed +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/rfcomm.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/rtp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/sdp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/android_emulator.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/common.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/file.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_device_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_device_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_device_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_packets_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_packets_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_packets_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_vhci_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_vhci_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/emulated_bluetooth_vhci_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/grpc_endpoint_description_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/grpc_endpoint_description_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/grpc_endpoint_description_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/common_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/common_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/common_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/hci_packet_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/hci_packet_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/hci_packet_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/model_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/model_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/model_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/packet_streamer_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/packet_streamer_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/packet_streamer_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/startup_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/startup_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/netsim/startup_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/rootcanal/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/rootcanal/configuration_pb2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/rootcanal/configuration_pb2.pyi +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/grpc_protobuf/rootcanal/configuration_pb2_grpc.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/hci_socket.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/pty.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/py.typed +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/pyusb.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/serial.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/tcp_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/tcp_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/udp.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/unix.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/usb.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/vhci.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/ws_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/transport/ws_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/utils.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/vendor/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/vendor/android/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble/vendor/zephyr/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble.egg-info/dependency_links.txt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble.egg-info/entry_points.txt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/bumble.egg-info/top_level.txt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/favicon.ico +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.svg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.vectornator/Artboard0.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.vectornator/Document.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.vectornator/Manifest.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.vectornator/Thumbnail.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo.vectornator/UndoHistory.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.svg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.vectornator/Artboard0.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.vectornator/Document.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.vectornator/Manifest.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.vectornator/Thumbnail.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/images/logo_framed.vectornator/UndoHistory.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/mkdocs.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/requirements.txt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/api/examples.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/api/guide.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/api/reference.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/auracast.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/bench.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/console.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/gatt_dump.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/gg_bridge.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/hci_bridge.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/pair.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/show.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/speaker.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/unbond.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/apps_and_tools/usb_probe.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/components/controller.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/components/gatt.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/components/host.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/components/security_manager.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/development/code_style.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/development/contributing.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/development/python_environments.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/downloads/zephyr/hci_usb.zip +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/drivers/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/drivers/intel.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/drivers/realtek.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/examples/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/extras/android_bt_bench.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/extras/android_remote_hci.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/extras/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/getting_started.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hardware/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/index.toml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/bumble.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/heart_rate_monitor/heart_rate_monitor.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/heart_rate_monitor/heart_rate_monitor.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/scanner/scanner.css +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/scanner/scanner.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/scanner/scanner.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/speaker/logo.svg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/speaker/speaker.css +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/speaker/speaker.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/speaker/speaker.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/hive/web/ui.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/images/bumble_layers.svg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/images/console_screenshot.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/images/favicon.ico +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/images/logo.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/images/logo_framed.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/images/speaker_screenshot.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/android.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/linux.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/macos.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/windows.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/platforms/winusb_driver.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/android_emulator.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/file.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/hci_socket.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/pty.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/serial.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/tcp_client.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/tcp_server.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/udp.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/usb.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/vhci.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/ws_client.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/transports/ws_server.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/index.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/use_case_1.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/use_case_2.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/use_case_3.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/use_case_4.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/use_case_5.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/src/use_cases/use_case_6.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/docs/mkdocs/theme/partials/footer.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/a2dp_sink1.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/asha_sink.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/asha_sink1.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/asha_sink2.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/async_runner.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/auracast_broadcasts.toml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/avrcp_as_sink.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/battery_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/battery_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/classic1.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/classic2.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/cs_initiator.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/cs_reflector.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/device1.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/device2.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/device3.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/device_information_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/device_with_rpa.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/heart_rate_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/heart_rate_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hfp_gateway.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hfp_gateway.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hfp_handsfree.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hfp_handsfree.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hid_key_map.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hid_keyboard.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/hid_report_parser.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/keyboard.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/keyboard.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/keyboard.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/leaudio.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/leaudio_with_classic.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/mcp_server.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/mobly/bench/one_device_bench_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/mobly/bench/sample_config.yml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/mobly/bench/two_devices_bench_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_a2dp_info.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_ams_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_ancs_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_asha_sink.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_channel_sounding.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_cig_setup.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_classic_connect.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_classic_l2cap.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_csis_servers.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_esco_connection.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_extended_advertiser.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_extended_advertiser_2.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_gatt_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_gatt_client_and_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_hap_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_hfp_gateway.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_mcp_client.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_notifier.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_unicast_server.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/run_vcp_renderer.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/speaker.json +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/examples/vcp_renderer.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/build.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/proguard-rules.pro +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/AndroidManifest.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/ic_launcher-playstore.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Advertiser.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/AutomationSnippet.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Connection.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Gatt.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/GattClient.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/GattServer.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/IoClient.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/L2capClient.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/L2capServer.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/MainActivity.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Mode.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Model.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Packet.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Pinger.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Ponger.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Receiver.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/RfcommClient.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/RfcommServer.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Scan.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Sender.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/SocketClient.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/SocketServer.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ui/theme/Color.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ui/theme/Theme.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ui/theme/Type.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/drawable/ic_launcher_background.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/drawable/ic_launcher_foreground.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/values/colors.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/values/ic_launcher_background.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/values/strings.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/values/themes.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/xml/backup_rules.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/app/src/main/res/xml/data_extraction_rules.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/build.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/gradle/libs.versions.toml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/gradle/wrapper/gradle-wrapper.jar +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/gradle/wrapper/gradle-wrapper.properties +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/gradle.properties +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/gradlew +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/gradlew.bat +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/BtBench/settings.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/build.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/proguard-rules.pro +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/AndroidManifest.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/aidl/android/hardware/bluetooth/IBluetoothHci.aidl +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/aidl/android/hardware/bluetooth/IBluetoothHciCallbacks.aidl +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/aidl/android/hardware/bluetooth/Status.aidl +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/hidl/bluetooth/1.1/IBluetoothHci.hal +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/hidl/bluetooth/1.1/IBluetoothHciCallbacks.hal +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/ic_launcher-playstore.png +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/IBluetoothHci.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/IBluetoothHciCallbacks.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/Status.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_0/IBluetoothHci.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_0/IBluetoothHciCallbacks.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_0/Status.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_1/IBluetoothHci.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_1/IBluetoothHciCallbacks.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/CommandLineInterface.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciHal.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciHalCallback.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciPacket.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciParser.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciProxy.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciServer.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/MainActivity.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/ui/theme/Color.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/ui/theme/Theme.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/ui/theme/Type.kt +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/values/colors.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/values/ic_launcher_background.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/values/strings.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/values/themes.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/xml/backup_rules.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/app/src/main/res/xml/data_extraction_rules.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/build.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/gradle/libs.versions.toml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/gradle/wrapper/gradle-wrapper.jar +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/gradle/wrapper/gradle-wrapper.properties +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/gradle.properties +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/gradlew +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/gradlew.bat +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/build.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/consumer-rules.pro +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/proguard-rules.pro +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/AndroidManifest.xml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/internal/hidl/base/V1_0/DebugInfo.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/internal/hidl/base/V1_0/IBase.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/HidlSupport.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/HwBinder.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/HwBlob.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/HwParcel.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/IHwBinder.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/IHwInterface.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/NativeHandle.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/lib/src/main/java/android/os/ServiceManager.java +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/scripts/generate_java_from_aidl.sh +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/extras/android/RemoteHCI/settings.gradle.kts +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/noxfile.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/CHANGELOG.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/Cargo.lock +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/Cargo.toml +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/examples/battery_client.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/examples/broadcast.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/examples/scanner.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/pytests/assigned_numbers.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/pytests/pytests.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/pytests/wrapper/drivers.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/pytests/wrapper/hci.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/pytests/wrapper/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/pytests/wrapper/transport.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/resources/test/firmware/realtek/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/resources/test/firmware/realtek/rtl8723b_fw_structure.bin +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/resources/test/firmware/realtek/rtl8761bu_fw_structure.bin +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/adv.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/firmware/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/firmware/rtk.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/l2cap/client_bridge.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/l2cap/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/l2cap/server_bridge.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/cli/usb/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/internal/drivers/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/internal/drivers/rtk.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/internal/hci/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/internal/hci/packets.pdl +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/internal/hci/tests.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/internal/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/lib.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/main.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/assigned_numbers/company_ids.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/assigned_numbers/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/assigned_numbers/services.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/common.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/controller.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/core.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/device/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/device/tests.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/drivers/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/drivers/rtk.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/gatt_client.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/hci.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/host.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/l2cap.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/link.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/logging.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/mod.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/profile.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/src/wrapper/transport.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/tools/file_header.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/rust/tools/gen_assigned_numbers.rs +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/scripts/process_android_emulator_protos.sh +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/scripts/process_android_netsim_protos.sh +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/setup.cfg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tasks.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/a2dp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/aics_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/asha_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/at_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/avdtp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/bap_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/bass_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/battery_service_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/cap_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/codecs_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/core_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/csip_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/decoder_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/g722_sample.g722 +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/gatt_service_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/gatt_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/gmap_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/hap_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/hci_data_001.bin +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/heart_rate_service_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/hfp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/import_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/keystore_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/l2cap_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/le_audio_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/mcp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/pytest.ini +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/rfcomm_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/sdp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/self_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/smp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/test_utils.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/transport_tcp_server_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/transport_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/utils_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/vcp_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tests/vocs_test.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tools/__init__.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tools/generate_company_id_list.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tools/intel_fw_download.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tools/intel_util.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tools/rtk_fw_download.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/tools/rtk_util.py +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/.gitignore +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/README.md +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/bumble.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/favicon.ico +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/heart_rate_monitor/heart_rate_monitor.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/heart_rate_monitor/heart_rate_monitor.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/scanner/scanner.css +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/scanner/scanner.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/scanner/scanner.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/speaker/logo.svg +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/speaker/speaker.css +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/speaker/speaker.html +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/speaker/speaker.js +0 -0
- {bumble-0.0.223 → bumble-0.0.224}/web/ui.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bumble
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.224
|
|
4
4
|
Summary: Bluetooth Stack for Apps, Emulation, Test and Experimentation
|
|
5
5
|
Author-email: Google <bumble-dev@google.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -11,12 +11,13 @@ License-File: LICENSE
|
|
|
11
11
|
Requires-Dist: aiohttp~=3.8; platform_system != "Emscripten"
|
|
12
12
|
Requires-Dist: appdirs>=1.4; platform_system != "Emscripten"
|
|
13
13
|
Requires-Dist: click>=8.1.3; platform_system != "Emscripten"
|
|
14
|
-
Requires-Dist: cryptography>=44.0.3; platform_system != "Emscripten"
|
|
14
|
+
Requires-Dist: cryptography>=44.0.3; platform_system != "Emscripten" and platform_system != "Android"
|
|
15
15
|
Requires-Dist: cryptography>=44.0.3; platform_system == "Emscripten"
|
|
16
|
+
Requires-Dist: cryptography>=42.0.8; platform_system == "Android"
|
|
16
17
|
Requires-Dist: grpcio>=1.62.1; platform_system != "Emscripten"
|
|
17
18
|
Requires-Dist: humanize>=4.6.0; platform_system != "Emscripten"
|
|
18
19
|
Requires-Dist: libusb1>=2.0.1; platform_system != "Emscripten"
|
|
19
|
-
Requires-Dist: libusb-package==1.0.26.1; platform_system != "Emscripten"
|
|
20
|
+
Requires-Dist: libusb-package==1.0.26.1; platform_system != "Emscripten" and platform_system != "Android"
|
|
20
21
|
Requires-Dist: platformdirs>=3.10.0; platform_system != "Emscripten"
|
|
21
22
|
Requires-Dist: prompt_toolkit>=3.0.16; platform_system != "Emscripten"
|
|
22
23
|
Requires-Dist: prettytable>=3.6.0; platform_system != "Emscripten"
|
|
@@ -27,23 +27,17 @@ from bumble.core import name_or_number
|
|
|
27
27
|
from bumble.hci import (
|
|
28
28
|
HCI_LE_READ_BUFFER_SIZE_COMMAND,
|
|
29
29
|
HCI_LE_READ_BUFFER_SIZE_V2_COMMAND,
|
|
30
|
-
HCI_LE_READ_MAXIMUM_ADVERTISING_DATA_LENGTH_COMMAND,
|
|
31
30
|
HCI_LE_READ_MAXIMUM_DATA_LENGTH_COMMAND,
|
|
32
|
-
|
|
31
|
+
HCI_LE_READ_MINIMUM_SUPPORTED_CONNECTION_INTERVAL_COMMAND,
|
|
33
32
|
HCI_LE_READ_SUGGESTED_DEFAULT_DATA_LENGTH_COMMAND,
|
|
34
33
|
HCI_READ_BD_ADDR_COMMAND,
|
|
35
34
|
HCI_READ_BUFFER_SIZE_COMMAND,
|
|
36
35
|
HCI_READ_LOCAL_NAME_COMMAND,
|
|
37
|
-
HCI_SUCCESS,
|
|
38
|
-
CodecID,
|
|
39
36
|
HCI_Command,
|
|
40
|
-
HCI_Command_Complete_Event,
|
|
41
|
-
HCI_Command_Status_Event,
|
|
42
37
|
HCI_LE_Read_Buffer_Size_Command,
|
|
43
38
|
HCI_LE_Read_Buffer_Size_V2_Command,
|
|
44
|
-
HCI_LE_Read_Maximum_Advertising_Data_Length_Command,
|
|
45
39
|
HCI_LE_Read_Maximum_Data_Length_Command,
|
|
46
|
-
|
|
40
|
+
HCI_LE_Read_Minimum_Supported_Connection_Interval_Command,
|
|
47
41
|
HCI_LE_Read_Suggested_Default_Data_Length_Command,
|
|
48
42
|
HCI_Read_BD_ADDR_Command,
|
|
49
43
|
HCI_Read_Buffer_Size_Command,
|
|
@@ -59,85 +53,81 @@ from bumble.host import Host
|
|
|
59
53
|
from bumble.transport import open_transport
|
|
60
54
|
|
|
61
55
|
|
|
62
|
-
# -----------------------------------------------------------------------------
|
|
63
|
-
def command_succeeded(response):
|
|
64
|
-
if isinstance(response, HCI_Command_Status_Event):
|
|
65
|
-
return response.status == HCI_SUCCESS
|
|
66
|
-
if isinstance(response, HCI_Command_Complete_Event):
|
|
67
|
-
return response.return_parameters.status == HCI_SUCCESS
|
|
68
|
-
return False
|
|
69
|
-
|
|
70
|
-
|
|
71
56
|
# -----------------------------------------------------------------------------
|
|
72
57
|
async def get_classic_info(host: Host) -> None:
|
|
73
58
|
if host.supports_command(HCI_READ_BD_ADDR_COMMAND):
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
)
|
|
59
|
+
response1 = await host.send_sync_command(HCI_Read_BD_ADDR_Command())
|
|
60
|
+
print()
|
|
61
|
+
print(
|
|
62
|
+
color('Public Address:', 'yellow'),
|
|
63
|
+
response1.bd_addr.to_string(False),
|
|
64
|
+
)
|
|
81
65
|
|
|
82
66
|
if host.supports_command(HCI_READ_LOCAL_NAME_COMMAND):
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
)
|
|
67
|
+
response2 = await host.send_sync_command(HCI_Read_Local_Name_Command())
|
|
68
|
+
print()
|
|
69
|
+
print(
|
|
70
|
+
color('Local Name:', 'yellow'),
|
|
71
|
+
map_null_terminated_utf8_string(response2.local_name),
|
|
72
|
+
)
|
|
90
73
|
|
|
91
74
|
|
|
92
75
|
# -----------------------------------------------------------------------------
|
|
93
76
|
async def get_le_info(host: Host) -> None:
|
|
94
77
|
print()
|
|
95
78
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
print(
|
|
102
|
-
color('LE Number Of Supported Advertising Sets:', 'yellow'),
|
|
103
|
-
response.return_parameters.num_supported_advertising_sets,
|
|
104
|
-
'\n',
|
|
105
|
-
)
|
|
79
|
+
print(
|
|
80
|
+
color('LE Number Of Supported Advertising Sets:', 'yellow'),
|
|
81
|
+
host.number_of_supported_advertising_sets,
|
|
82
|
+
'\n',
|
|
83
|
+
)
|
|
106
84
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
print(
|
|
113
|
-
color('LE Maximum Advertising Data Length:', 'yellow'),
|
|
114
|
-
response.return_parameters.max_advertising_data_length,
|
|
115
|
-
'\n',
|
|
116
|
-
)
|
|
85
|
+
print(
|
|
86
|
+
color('LE Maximum Advertising Data Length:', 'yellow'),
|
|
87
|
+
host.maximum_advertising_data_length,
|
|
88
|
+
'\n',
|
|
89
|
+
)
|
|
117
90
|
|
|
118
91
|
if host.supports_command(HCI_LE_READ_MAXIMUM_DATA_LENGTH_COMMAND):
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
92
|
+
response1 = await host.send_sync_command(
|
|
93
|
+
HCI_LE_Read_Maximum_Data_Length_Command()
|
|
94
|
+
)
|
|
95
|
+
print(
|
|
96
|
+
color('LE Maximum Data Length:', 'yellow'),
|
|
97
|
+
(
|
|
98
|
+
f'tx:{response1.supported_max_tx_octets}/'
|
|
99
|
+
f'{response1.supported_max_tx_time}, '
|
|
100
|
+
f'rx:{response1.supported_max_rx_octets}/'
|
|
101
|
+
f'{response1.supported_max_rx_time}'
|
|
102
|
+
),
|
|
103
|
+
)
|
|
131
104
|
|
|
132
105
|
if host.supports_command(HCI_LE_READ_SUGGESTED_DEFAULT_DATA_LENGTH_COMMAND):
|
|
133
|
-
|
|
106
|
+
response2 = await host.send_sync_command(
|
|
134
107
|
HCI_LE_Read_Suggested_Default_Data_Length_Command()
|
|
135
108
|
)
|
|
136
|
-
|
|
109
|
+
print(
|
|
110
|
+
color('LE Suggested Default Data Length:', 'yellow'),
|
|
111
|
+
f'{response2.suggested_max_tx_octets}/'
|
|
112
|
+
f'{response2.suggested_max_tx_time}',
|
|
113
|
+
'\n',
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
if host.supports_command(HCI_LE_READ_MINIMUM_SUPPORTED_CONNECTION_INTERVAL_COMMAND):
|
|
117
|
+
response3 = await host.send_sync_command(
|
|
118
|
+
HCI_LE_Read_Minimum_Supported_Connection_Interval_Command()
|
|
119
|
+
)
|
|
120
|
+
print(
|
|
121
|
+
color('LE Minimum Supported Connection Interval:', 'yellow'),
|
|
122
|
+
f'{response3.minimum_supported_connection_interval * 125} µs',
|
|
123
|
+
)
|
|
124
|
+
for group in range(len(response3.group_min)):
|
|
137
125
|
print(
|
|
138
|
-
|
|
139
|
-
f'{
|
|
140
|
-
f'{
|
|
126
|
+
f' Group {group}: '
|
|
127
|
+
f'{response3.group_min[group] * 125} µs to '
|
|
128
|
+
f'{response3.group_max[group] * 125} µs '
|
|
129
|
+
'by increments of '
|
|
130
|
+
f'{response3.group_stride[group] * 125} µs',
|
|
141
131
|
'\n',
|
|
142
132
|
)
|
|
143
133
|
|
|
@@ -151,37 +141,31 @@ async def get_flow_control_info(host: Host) -> None:
|
|
|
151
141
|
print()
|
|
152
142
|
|
|
153
143
|
if host.supports_command(HCI_READ_BUFFER_SIZE_COMMAND):
|
|
154
|
-
|
|
155
|
-
HCI_Read_Buffer_Size_Command(), check_result=True
|
|
156
|
-
)
|
|
144
|
+
response1 = await host.send_sync_command(HCI_Read_Buffer_Size_Command())
|
|
157
145
|
print(
|
|
158
146
|
color('ACL Flow Control:', 'yellow'),
|
|
159
|
-
f'{
|
|
160
|
-
f'packets of size {
|
|
147
|
+
f'{response1.hc_total_num_acl_data_packets} '
|
|
148
|
+
f'packets of size {response1.hc_acl_data_packet_length}',
|
|
161
149
|
)
|
|
162
150
|
|
|
163
151
|
if host.supports_command(HCI_LE_READ_BUFFER_SIZE_V2_COMMAND):
|
|
164
|
-
|
|
165
|
-
HCI_LE_Read_Buffer_Size_V2_Command(), check_result=True
|
|
166
|
-
)
|
|
152
|
+
response2 = await host.send_sync_command(HCI_LE_Read_Buffer_Size_V2_Command())
|
|
167
153
|
print(
|
|
168
154
|
color('LE ACL Flow Control:', 'yellow'),
|
|
169
|
-
f'{
|
|
170
|
-
f'packets of size {
|
|
155
|
+
f'{response2.total_num_le_acl_data_packets} '
|
|
156
|
+
f'packets of size {response2.le_acl_data_packet_length}',
|
|
171
157
|
)
|
|
172
158
|
print(
|
|
173
159
|
color('LE ISO Flow Control:', 'yellow'),
|
|
174
|
-
f'{
|
|
175
|
-
f'packets of size {
|
|
160
|
+
f'{response2.total_num_iso_data_packets} '
|
|
161
|
+
f'packets of size {response2.iso_data_packet_length}',
|
|
176
162
|
)
|
|
177
163
|
elif host.supports_command(HCI_LE_READ_BUFFER_SIZE_COMMAND):
|
|
178
|
-
|
|
179
|
-
HCI_LE_Read_Buffer_Size_Command(), check_result=True
|
|
180
|
-
)
|
|
164
|
+
response3 = await host.send_sync_command(HCI_LE_Read_Buffer_Size_Command())
|
|
181
165
|
print(
|
|
182
166
|
color('LE ACL Flow Control:', 'yellow'),
|
|
183
|
-
f'{
|
|
184
|
-
f'packets of size {
|
|
167
|
+
f'{response3.total_num_le_acl_data_packets} '
|
|
168
|
+
f'packets of size {response3.le_acl_data_packet_length}',
|
|
185
169
|
)
|
|
186
170
|
|
|
187
171
|
|
|
@@ -190,52 +174,44 @@ async def get_codecs_info(host: Host) -> None:
|
|
|
190
174
|
print()
|
|
191
175
|
|
|
192
176
|
if host.supports_command(HCI_Read_Local_Supported_Codecs_V2_Command.op_code):
|
|
193
|
-
|
|
194
|
-
HCI_Read_Local_Supported_Codecs_V2_Command()
|
|
177
|
+
response1 = await host.send_sync_command(
|
|
178
|
+
HCI_Read_Local_Supported_Codecs_V2_Command()
|
|
195
179
|
)
|
|
196
180
|
print(color('Codecs:', 'yellow'))
|
|
197
181
|
|
|
198
182
|
for codec_id, transport in zip(
|
|
199
|
-
|
|
200
|
-
|
|
183
|
+
response1.standard_codec_ids,
|
|
184
|
+
response1.standard_codec_transports,
|
|
201
185
|
):
|
|
202
|
-
|
|
203
|
-
transport
|
|
204
|
-
).name
|
|
205
|
-
codec_name = CodecID(codec_id).name
|
|
206
|
-
print(f' {codec_name} - {transport_name}')
|
|
186
|
+
print(f' {codec_id.name} - {transport.name}')
|
|
207
187
|
|
|
208
|
-
for
|
|
209
|
-
|
|
210
|
-
|
|
188
|
+
for vendor_codec_id, vendor_transport in zip(
|
|
189
|
+
response1.vendor_specific_codec_ids,
|
|
190
|
+
response1.vendor_specific_codec_transports,
|
|
211
191
|
):
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
).name
|
|
215
|
-
company = name_or_number(COMPANY_IDENTIFIERS, codec_id >> 16)
|
|
216
|
-
print(f' {company} / {codec_id & 0xFFFF} - {transport_name}')
|
|
192
|
+
company = name_or_number(COMPANY_IDENTIFIERS, vendor_codec_id >> 16)
|
|
193
|
+
print(f' {company} / {vendor_codec_id & 0xFFFF} - {vendor_transport.name}')
|
|
217
194
|
|
|
218
|
-
if not
|
|
195
|
+
if not response1.standard_codec_ids:
|
|
219
196
|
print(' No standard codecs')
|
|
220
|
-
if not
|
|
197
|
+
if not response1.vendor_specific_codec_ids:
|
|
221
198
|
print(' No Vendor-specific codecs')
|
|
222
199
|
|
|
223
200
|
if host.supports_command(HCI_Read_Local_Supported_Codecs_Command.op_code):
|
|
224
|
-
|
|
225
|
-
HCI_Read_Local_Supported_Codecs_Command()
|
|
201
|
+
response2 = await host.send_sync_command(
|
|
202
|
+
HCI_Read_Local_Supported_Codecs_Command()
|
|
226
203
|
)
|
|
227
204
|
print(color('Codecs (BR/EDR):', 'yellow'))
|
|
228
|
-
for codec_id in
|
|
229
|
-
|
|
230
|
-
print(f' {codec_name}')
|
|
205
|
+
for codec_id in response2.standard_codec_ids:
|
|
206
|
+
print(f' {codec_id.name}')
|
|
231
207
|
|
|
232
|
-
for
|
|
233
|
-
company = name_or_number(COMPANY_IDENTIFIERS,
|
|
234
|
-
print(f' {company} / {
|
|
208
|
+
for vendor_codec_id in response2.vendor_specific_codec_ids:
|
|
209
|
+
company = name_or_number(COMPANY_IDENTIFIERS, vendor_codec_id >> 16)
|
|
210
|
+
print(f' {company} / {vendor_codec_id & 0xFFFF}')
|
|
235
211
|
|
|
236
|
-
if not
|
|
212
|
+
if not response2.standard_codec_ids:
|
|
237
213
|
print(' No standard codecs')
|
|
238
|
-
if not
|
|
214
|
+
if not response2.vendor_specific_codec_ids:
|
|
239
215
|
print(' No Vendor-specific codecs')
|
|
240
216
|
|
|
241
217
|
|
|
@@ -85,7 +85,7 @@ class Loopback:
|
|
|
85
85
|
print(color('@@@ Received last packet', 'green'))
|
|
86
86
|
self.done.set()
|
|
87
87
|
|
|
88
|
-
async def run(self):
|
|
88
|
+
async def run(self) -> None:
|
|
89
89
|
"""Run a loopback throughput test"""
|
|
90
90
|
print(color('>>> Connecting to HCI...', 'green'))
|
|
91
91
|
async with await open_transport(self.transport) as (
|
|
@@ -100,11 +100,15 @@ class Loopback:
|
|
|
100
100
|
# make sure data can fit in one l2cap pdu
|
|
101
101
|
l2cap_header_size = 4
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
packet_queue = (
|
|
104
104
|
host.acl_packet_queue
|
|
105
105
|
if host.acl_packet_queue
|
|
106
106
|
else host.le_acl_packet_queue
|
|
107
|
-
)
|
|
107
|
+
)
|
|
108
|
+
if packet_queue is None:
|
|
109
|
+
print(color('!!! No packet queue', 'red'))
|
|
110
|
+
return
|
|
111
|
+
max_packet_size = packet_queue.max_packet_size - l2cap_header_size
|
|
108
112
|
if self.packet_size > max_packet_size:
|
|
109
113
|
print(
|
|
110
114
|
color(
|
|
@@ -128,20 +132,18 @@ class Loopback:
|
|
|
128
132
|
loopback_mode = LoopbackMode.LOCAL
|
|
129
133
|
|
|
130
134
|
print(color('### Setting loopback mode', 'blue'))
|
|
131
|
-
await host.
|
|
135
|
+
await host.send_sync_command(
|
|
132
136
|
HCI_Write_Loopback_Mode_Command(loopback_mode=LoopbackMode.LOCAL),
|
|
133
|
-
check_result=True,
|
|
134
137
|
)
|
|
135
138
|
|
|
136
139
|
print(color('### Checking loopback mode', 'blue'))
|
|
137
|
-
response = await host.
|
|
138
|
-
|
|
139
|
-
)
|
|
140
|
-
if response.return_parameters.loopback_mode != loopback_mode:
|
|
140
|
+
response = await host.send_sync_command(HCI_Read_Loopback_Mode_Command())
|
|
141
|
+
if response.loopback_mode != loopback_mode:
|
|
141
142
|
print(color('!!! Loopback mode mismatch', 'red'))
|
|
142
143
|
return
|
|
143
144
|
|
|
144
145
|
await self.connection_event.wait()
|
|
146
|
+
assert self.connection_handle is not None
|
|
145
147
|
print(color('### Connected', 'cyan'))
|
|
146
148
|
|
|
147
149
|
print(color('=== Start sending', 'magenta'))
|
|
@@ -81,7 +81,9 @@ async def async_main():
|
|
|
81
81
|
response = hci.HCI_Command_Complete_Event(
|
|
82
82
|
num_hci_command_packets=1,
|
|
83
83
|
command_opcode=hci_packet.op_code,
|
|
84
|
-
return_parameters=
|
|
84
|
+
return_parameters=hci.HCI_StatusReturnParameters(
|
|
85
|
+
status=hci.HCI_ErrorCode.SUCCESS
|
|
86
|
+
),
|
|
85
87
|
)
|
|
86
88
|
# Return a packet with 'respond to sender' set to True
|
|
87
89
|
return (bytes(response), True)
|
|
@@ -268,7 +268,7 @@ async def run(device_config, hci_transport, bridge):
|
|
|
268
268
|
await bridge.start(device)
|
|
269
269
|
|
|
270
270
|
# Wait until the transport terminates
|
|
271
|
-
await hci_source.
|
|
271
|
+
await hci_source.terminated
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
# -----------------------------------------------------------------------------
|
|
@@ -421,7 +421,7 @@ async def run(device_config, hci_transport, bridge):
|
|
|
421
421
|
await bridge.start(device)
|
|
422
422
|
|
|
423
423
|
# Wait until the transport terminates
|
|
424
|
-
await hci_source.
|
|
424
|
+
await hci_source.terminated
|
|
425
425
|
except core.ConnectionError as error:
|
|
426
426
|
print(color(f"!!! Bluetooth connection failed: {error}", "red"))
|
|
427
427
|
except Exception as error:
|
|
@@ -22,7 +22,7 @@ import click
|
|
|
22
22
|
import bumble.logging
|
|
23
23
|
from bumble import data_types
|
|
24
24
|
from bumble.colors import color
|
|
25
|
-
from bumble.device import Advertisement, Device
|
|
25
|
+
from bumble.device import Advertisement, Device, DeviceConfiguration
|
|
26
26
|
from bumble.hci import HCI_LE_1M_PHY, HCI_LE_CODED_PHY, Address, HCI_Constant
|
|
27
27
|
from bumble.keys import JsonKeyStore
|
|
28
28
|
from bumble.smp import AddressResolver
|
|
@@ -144,8 +144,14 @@ async def scan(
|
|
|
144
144
|
device_config, hci_source, hci_sink
|
|
145
145
|
)
|
|
146
146
|
else:
|
|
147
|
-
device = Device.
|
|
148
|
-
|
|
147
|
+
device = Device.from_config_with_hci(
|
|
148
|
+
DeviceConfiguration(
|
|
149
|
+
name='Bumble',
|
|
150
|
+
address=Address('F0:F1:F2:F3:F4:F5'),
|
|
151
|
+
keystore='JsonKeyStore',
|
|
152
|
+
),
|
|
153
|
+
hci_source,
|
|
154
|
+
hci_sink,
|
|
149
155
|
)
|
|
150
156
|
|
|
151
157
|
await device.power_on()
|
|
@@ -190,7 +196,7 @@ async def scan(
|
|
|
190
196
|
scanning_phys=scanning_phys,
|
|
191
197
|
)
|
|
192
198
|
|
|
193
|
-
await hci_source.
|
|
199
|
+
await hci_source.terminated
|
|
194
200
|
|
|
195
201
|
|
|
196
202
|
# -----------------------------------------------------------------------------
|
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.0.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 0,
|
|
31
|
+
__version__ = version = '0.0.224'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 0, 224)
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'g2d17a5f74'
|