bumble 0.0.192__tar.gz → 0.0.194__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.192 → bumble-0.0.194}/.github/workflows/code-check.yml +1 -1
- {bumble-0.0.192 → bumble-0.0.194}/.github/workflows/python-build-test.yml +2 -2
- {bumble-0.0.192 → bumble-0.0.194}/.vscode/settings.json +4 -0
- {bumble-0.0.192/bumble.egg-info → bumble-0.0.194}/PKG-INFO +5 -4
- {bumble-0.0.192 → bumble-0.0.194}/apps/bench.py +69 -12
- bumble-0.0.194/apps/lea_unicast/app.py +577 -0
- bumble-0.0.194/apps/lea_unicast/index.html +68 -0
- bumble-0.0.194/apps/lea_unicast/liblc3.wasm +0 -0
- bumble-0.0.194/apps/rfcomm_bridge.py +511 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/_version.py +2 -2
- {bumble-0.0.192 → bumble-0.0.194}/bumble/device.py +157 -118
- {bumble-0.0.192 → bumble-0.0.194}/bumble/hci.py +14 -25
- {bumble-0.0.192 → bumble-0.0.194}/bumble/hfp.py +279 -31
- {bumble-0.0.192 → bumble-0.0.194}/bumble/host.py +9 -5
- {bumble-0.0.192 → bumble-0.0.194}/bumble/keys.py +7 -4
- {bumble-0.0.192 → bumble-0.0.194}/bumble/l2cap.py +5 -2
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/bap.py +52 -11
- {bumble-0.0.192 → bumble-0.0.194}/bumble/rfcomm.py +173 -60
- {bumble-0.0.192 → bumble-0.0.194}/bumble/sdp.py +1 -1
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/common.py +4 -0
- {bumble-0.0.192 → bumble-0.0.194/bumble.egg-info}/PKG-INFO +5 -4
- {bumble-0.0.192 → bumble-0.0.194}/bumble.egg-info/SOURCES.txt +5 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble.egg-info/entry_points.txt +1 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble.egg-info/requires.txt +4 -3
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/bumble.js +21 -3
- bumble-0.0.194/examples/hfp_gateway.html +350 -0
- bumble-0.0.194/examples/hfp_gateway.json +5 -0
- bumble-0.0.194/examples/run_hfp_gateway.py +287 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_unicast_server.py +85 -70
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_vcp_renderer.py +1 -1
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/SocketClient.kt +7 -1
- {bumble-0.0.192 → bumble-0.0.194}/setup.cfg +5 -3
- {bumble-0.0.192 → bumble-0.0.194}/tests/bap_test.py +4 -4
- {bumble-0.0.192 → bumble-0.0.194}/tests/device_test.py +97 -2
- {bumble-0.0.192 → bumble-0.0.194}/tests/hfp_test.py +195 -3
- {bumble-0.0.192 → bumble-0.0.194}/tests/rfcomm_test.py +31 -1
- {bumble-0.0.192 → bumble-0.0.194}/tests/test_utils.py +8 -1
- {bumble-0.0.192 → bumble-0.0.194}/web/bumble.js +21 -3
- bumble-0.0.192/examples/hfp_gateway.json +0 -4
- bumble-0.0.192/examples/run_hfp_gateway.py +0 -143
- {bumble-0.0.192 → bumble-0.0.194}/.git-blame-ignore-revs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/.github/workflows/codeql-analysis.yml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/.github/workflows/python-avatar.yml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/.github/workflows/python-publish.yml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/CONTRIBUTING.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/LICENSE +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/ble_rpa_tool.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/console.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/controller_info.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/controller_loopback.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/controllers.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/gatt_dump.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/gg_bridge.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/hci_bridge.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/l2cap_bridge.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/link_relay/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/link_relay/link_relay.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/link_relay/logging.yml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/pair.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/pandora_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/scan.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/show.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/speaker/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/speaker/logo.svg +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/speaker/speaker.css +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/speaker/speaker.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/speaker/speaker.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/speaker/speaker.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/unbond.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/apps/usb_probe.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/a2dp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/at.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/att.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/avc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/avctp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/avdtp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/avrcp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/bridge.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/codecs.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/colors.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/company_ids.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/controller.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/core.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/crypto.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/decoder.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/drivers/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/drivers/common.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/drivers/intel.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/drivers/rtk.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/gap.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/gatt.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/gatt_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/gatt_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/helpers.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/hid.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/link.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pairing.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/config.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/device.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/host.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/py.typed +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/security.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/pandora/utils.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/asha_service.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/battery_service.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/cap.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/csip.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/device_information_service.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/heart_rate_service.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/py.typed +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/profiles/vcp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/py.typed +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/smp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/snoop.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/android_emulator.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/android_netsim.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/file.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/common_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/common_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/common_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_device_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_device_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_device_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_packets_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_packets_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_packets_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_vhci_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_vhci_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/emulated_bluetooth_vhci_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/grpc_endpoint_description_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/grpc_endpoint_description_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/grpc_endpoint_description_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/hci_packet_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/hci_packet_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/hci_packet_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/packet_streamer_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/packet_streamer_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/packet_streamer_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/startup_pb2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/startup_pb2.pyi +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/grpc_protobuf/startup_pb2_grpc.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/hci_socket.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/pty.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/py.typed +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/pyusb.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/serial.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/tcp_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/tcp_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/udp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/usb.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/vhci.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/ws_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/transport/ws_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/utils.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/vendor/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/vendor/android/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/vendor/android/hci.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/vendor/zephyr/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble/vendor/zephyr/hci.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble.egg-info/dependency_links.txt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/bumble.egg-info/top_level.txt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.svg +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.vectornator/Artboard0.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.vectornator/Document.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.vectornator/Manifest.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.vectornator/Thumbnail.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo.vectornator/UndoHistory.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.svg +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.vectornator/Artboard0.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.vectornator/Document.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.vectornator/Manifest.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.vectornator/Thumbnail.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/images/logo_framed.vectornator/UndoHistory.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/mkdocs.yml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/requirements.txt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/api/examples.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/api/guide.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/api/reference.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/bench.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/console.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/gatt_dump.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/gg_bridge.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/hci_bridge.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/link_relay.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/pair.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/show.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/speaker.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/unbond.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/apps_and_tools/usb_probe.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/components/controller.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/components/gatt.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/components/host.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/components/security_manager.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/development/code_style.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/development/contributing.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/development/python_environments.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/downloads/zephyr/hci_usb.zip +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/drivers/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/drivers/realtek.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/examples/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/extras/android_bt_bench.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/extras/android_remote_hci.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/extras/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/getting_started.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hardware/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/index.toml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/heart_rate_monitor/heart_rate_monitor.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/heart_rate_monitor/heart_rate_monitor.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/heart_rate_monitor/heart_rate_monitor.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/scanner/scanner.css +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/scanner/scanner.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/scanner/scanner.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/scanner/scanner.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/speaker/logo.svg +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/speaker/speaker.css +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/speaker/speaker.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/speaker/speaker.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/speaker/speaker.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/hive/web/ui.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/images/bumble_layers.svg +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/images/console_screenshot.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/images/favicon.ico +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/images/logo.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/images/logo_framed.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/images/speaker_screenshot.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/android.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/linux.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/macos.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/windows.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/winusb_driver.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/platforms/zephyr.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/android_emulator.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/file.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/hci_socket.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/pty.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/serial.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/tcp_client.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/tcp_server.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/udp.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/usb.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/vhci.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/ws_client.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/transports/ws_server.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/index.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/use_case_1.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/use_case_2.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/use_case_3.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/use_case_4.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/use_case_5.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/src/use_cases/use_case_6.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/docs/mkdocs/theme/partials/footer.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/environment.yml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/a2dp_sink1.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/asha_sink1.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/asha_sink2.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/async_runner.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/avrcp_as_sink.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/battery_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/battery_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/classic1.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/classic2.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/device1.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/device2.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/device3.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/device_information_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/device_information_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/heart_rate_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/heart_rate_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/hfp_handsfree.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/hfp_handsfree.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/hid_key_map.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/hid_keyboard.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/hid_report_parser.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/keyboard.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/keyboard.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/keyboard.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/leaudio.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/leaudio_with_classic.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_a2dp_info.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_a2dp_sink.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_a2dp_source.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_advertiser.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_asha_sink.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_avrcp.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_cig_setup.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_classic_connect.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_classic_discoverable.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_classic_discovery.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_connect_and_encrypt.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_controller.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_controller_with_scanner.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_csis_servers.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_device_with_snooper.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_esco_connection.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_extended_advertiser.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_extended_advertiser_2.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_gatt_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_gatt_client_and_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_gatt_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_hfp_handsfree.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_hid_device.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_hid_host.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_notifier.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_rfcomm_client.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_rfcomm_server.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/run_scanner.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/speaker.json +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/examples/vcp_renderer.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/build.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/proguard-rules.pro +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/AndroidManifest.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/ic_launcher-playstore.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/L2capClient.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/L2capServer.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/MainActivity.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Model.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Packet.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Receiver.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/RfcommClient.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/RfcommServer.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/Sender.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/SocketServer.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ui/theme/Color.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ui/theme/Theme.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/java/com/github/google/bumble/btbench/ui/theme/Type.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/drawable/ic_launcher_background.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/drawable/ic_launcher_foreground.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/values/colors.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/values/ic_launcher_background.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/values/strings.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/values/themes.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/xml/backup_rules.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/app/src/main/res/xml/data_extraction_rules.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/build.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/gradle/libs.versions.toml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/gradle/wrapper/gradle-wrapper.jar +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/gradle/wrapper/gradle-wrapper.properties +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/gradle.properties +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/gradlew +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/gradlew.bat +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/BtBench/settings.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/build.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/proguard-rules.pro +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/AndroidManifest.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/aidl/android/hardware/bluetooth/IBluetoothHci.aidl +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/aidl/android/hardware/bluetooth/IBluetoothHciCallbacks.aidl +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/aidl/android/hardware/bluetooth/Status.aidl +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/hidl/bluetooth/1.1/IBluetoothHci.hal +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/hidl/bluetooth/1.1/IBluetoothHciCallbacks.hal +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/ic_launcher-playstore.png +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/IBluetoothHci.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/IBluetoothHciCallbacks.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/Status.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_0/IBluetoothHci.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_0/IBluetoothHciCallbacks.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_0/Status.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_1/IBluetoothHci.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/android/hardware/bluetooth/V1_1/IBluetoothHciCallbacks.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/CommandLineInterface.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciHal.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciHalCallback.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciPacket.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciParser.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciProxy.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/HciServer.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/MainActivity.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/ui/theme/Color.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/ui/theme/Theme.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/java/com/github/google/bumble/remotehci/ui/theme/Type.kt +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/values/colors.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/values/ic_launcher_background.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/values/strings.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/values/themes.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/xml/backup_rules.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/app/src/main/res/xml/data_extraction_rules.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/build.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/gradle/libs.versions.toml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/gradle/wrapper/gradle-wrapper.jar +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/gradle/wrapper/gradle-wrapper.properties +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/gradle.properties +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/gradlew +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/gradlew.bat +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/build.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/consumer-rules.pro +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/proguard-rules.pro +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/AndroidManifest.xml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/internal/hidl/base/V1_0/DebugInfo.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/internal/hidl/base/V1_0/IBase.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/HidlSupport.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/HwBinder.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/HwBlob.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/HwParcel.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/IHwBinder.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/IHwInterface.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/NativeHandle.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/lib/src/main/java/android/os/ServiceManager.java +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/scripts/generate_java_from_aidl.sh +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/extras/android/RemoteHCI/settings.gradle.kts +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/noxfile.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/pyproject.toml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/.gitignore +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/CHANGELOG.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/Cargo.lock +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/Cargo.toml +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/examples/battery_client.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/examples/broadcast.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/examples/scanner.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/pytests/assigned_numbers.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/pytests/pytests.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/pytests/wrapper/drivers.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/pytests/wrapper/hci.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/pytests/wrapper/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/pytests/wrapper/transport.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/resources/test/firmware/realtek/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/resources/test/firmware/realtek/rtl8723b_fw_structure.bin +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/resources/test/firmware/realtek/rtl8761bu_fw_structure.bin +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/adv.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/firmware/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/firmware/rtk.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/l2cap/client_bridge.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/l2cap/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/l2cap/server_bridge.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/cli/usb/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/internal/drivers/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/internal/drivers/rtk.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/internal/hci/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/internal/hci/packets.pdl +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/internal/hci/tests.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/internal/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/lib.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/main.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/assigned_numbers/company_ids.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/assigned_numbers/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/assigned_numbers/services.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/common.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/controller.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/core.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/device/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/device/tests.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/drivers/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/drivers/rtk.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/gatt_client.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/hci.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/host.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/l2cap.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/link.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/logging.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/mod.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/profile.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/src/wrapper/transport.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/tools/file_header.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/rust/tools/gen_assigned_numbers.rs +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/scripts/process_android_emulator_protos.sh +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/scripts/process_android_netsim_protos.sh +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/setup.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tasks.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/a2dp_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/at_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/avdtp_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/avrcp_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/cap_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/codecs_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/core_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/csip_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/decoder_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/g722_sample.g722 +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/gatt_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/hci_data_001.bin +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/hci_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/host_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/import_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/keystore_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/l2cap_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/pytest.ini +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/sdp_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/self_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/smp_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/transport_tcp_server_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/transport_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/utils_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tests/vcp_test.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tools/__init__.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tools/generate_company_id_list.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tools/rtk_fw_download.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/tools/rtk_util.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/README.md +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/heart_rate_monitor/heart_rate_monitor.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/heart_rate_monitor/heart_rate_monitor.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/heart_rate_monitor/heart_rate_monitor.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/scanner/scanner.css +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/scanner/scanner.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/scanner/scanner.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/scanner/scanner.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/speaker/logo.svg +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/speaker/speaker.css +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/speaker/speaker.html +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/speaker/speaker.js +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/speaker/speaker.py +0 -0
- {bumble-0.0.192 → bumble-0.0.194}/web/ui.js +0 -0
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
strategy:
|
|
17
17
|
matrix:
|
|
18
18
|
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
|
|
19
|
-
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
19
|
+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
20
20
|
fail-fast: false
|
|
21
21
|
|
|
22
22
|
steps:
|
|
@@ -46,7 +46,7 @@ jobs:
|
|
|
46
46
|
runs-on: ubuntu-latest
|
|
47
47
|
strategy:
|
|
48
48
|
matrix:
|
|
49
|
-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
|
|
49
|
+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
|
|
50
50
|
rust-version: [ "1.76.0", "stable" ]
|
|
51
51
|
fail-fast: false
|
|
52
52
|
steps:
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"cSpell.words": [
|
|
3
3
|
"Abortable",
|
|
4
|
+
"aiohttp",
|
|
4
5
|
"altsetting",
|
|
5
6
|
"ansiblue",
|
|
6
7
|
"ansicyan",
|
|
@@ -9,6 +10,7 @@
|
|
|
9
10
|
"ansired",
|
|
10
11
|
"ansiyellow",
|
|
11
12
|
"appendleft",
|
|
13
|
+
"ascs",
|
|
12
14
|
"ASHA",
|
|
13
15
|
"asyncio",
|
|
14
16
|
"ATRAC",
|
|
@@ -43,6 +45,7 @@
|
|
|
43
45
|
"keyup",
|
|
44
46
|
"levelname",
|
|
45
47
|
"libc",
|
|
48
|
+
"liblc",
|
|
46
49
|
"libusb",
|
|
47
50
|
"MITM",
|
|
48
51
|
"MSBC",
|
|
@@ -78,6 +81,7 @@
|
|
|
78
81
|
"unmuted",
|
|
79
82
|
"usbmodem",
|
|
80
83
|
"vhci",
|
|
84
|
+
"wasmtime",
|
|
81
85
|
"websockets",
|
|
82
86
|
"xcursor",
|
|
83
87
|
"ycursor"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bumble
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.194
|
|
4
4
|
Summary: Bluetooth Stack for Apps, Emulation, Test and Experimentation
|
|
5
5
|
Home-page: https://github.com/google/bumble
|
|
6
6
|
Author: Google
|
|
@@ -29,7 +29,7 @@ Requires-Dist: websockets>=12.0; platform_system != "Emscripten"
|
|
|
29
29
|
Provides-Extra: build
|
|
30
30
|
Requires-Dist: build>=0.7; extra == "build"
|
|
31
31
|
Provides-Extra: test
|
|
32
|
-
Requires-Dist: pytest>=8.
|
|
32
|
+
Requires-Dist: pytest>=8.2; extra == "test"
|
|
33
33
|
Requires-Dist: pytest-asyncio>=0.23.5; extra == "test"
|
|
34
34
|
Requires-Dist: pytest-html>=3.2.0; extra == "test"
|
|
35
35
|
Requires-Dist: coverage>=6.4; extra == "test"
|
|
@@ -37,13 +37,14 @@ Provides-Extra: development
|
|
|
37
37
|
Requires-Dist: black==24.3; extra == "development"
|
|
38
38
|
Requires-Dist: grpcio-tools>=1.62.1; extra == "development"
|
|
39
39
|
Requires-Dist: invoke>=1.7.3; extra == "development"
|
|
40
|
-
Requires-Dist: mypy==1.
|
|
40
|
+
Requires-Dist: mypy==1.10.0; extra == "development"
|
|
41
41
|
Requires-Dist: nox>=2022; extra == "development"
|
|
42
|
-
Requires-Dist: pylint==
|
|
42
|
+
Requires-Dist: pylint==3.1.0; extra == "development"
|
|
43
43
|
Requires-Dist: pyyaml>=6.0; extra == "development"
|
|
44
44
|
Requires-Dist: types-appdirs>=1.4.3; extra == "development"
|
|
45
45
|
Requires-Dist: types-invoke>=1.7.3; extra == "development"
|
|
46
46
|
Requires-Dist: types-protobuf>=4.21.0; extra == "development"
|
|
47
|
+
Requires-Dist: wasmtime==20.0.0; extra == "development"
|
|
47
48
|
Provides-Extra: avatar
|
|
48
49
|
Requires-Dist: pandora-avatar==0.0.9; extra == "avatar"
|
|
49
50
|
Requires-Dist: rootcanal==1.10.0; python_version >= "3.10" and extra == "avatar"
|
|
@@ -899,14 +899,26 @@ class L2capServer(StreamedPacketIO):
|
|
|
899
899
|
# RfcommClient
|
|
900
900
|
# -----------------------------------------------------------------------------
|
|
901
901
|
class RfcommClient(StreamedPacketIO):
|
|
902
|
-
def __init__(
|
|
902
|
+
def __init__(
|
|
903
|
+
self,
|
|
904
|
+
device,
|
|
905
|
+
channel,
|
|
906
|
+
uuid,
|
|
907
|
+
l2cap_mtu,
|
|
908
|
+
max_frame_size,
|
|
909
|
+
initial_credits,
|
|
910
|
+
max_credits,
|
|
911
|
+
credits_threshold,
|
|
912
|
+
):
|
|
903
913
|
super().__init__()
|
|
904
914
|
self.device = device
|
|
905
915
|
self.channel = channel
|
|
906
916
|
self.uuid = uuid
|
|
907
917
|
self.l2cap_mtu = l2cap_mtu
|
|
908
918
|
self.max_frame_size = max_frame_size
|
|
909
|
-
self.
|
|
919
|
+
self.initial_credits = initial_credits
|
|
920
|
+
self.max_credits = max_credits
|
|
921
|
+
self.credits_threshold = credits_threshold
|
|
910
922
|
self.rfcomm_session = None
|
|
911
923
|
self.ready = asyncio.Event()
|
|
912
924
|
|
|
@@ -940,12 +952,17 @@ class RfcommClient(StreamedPacketIO):
|
|
|
940
952
|
logging.info(color(f'### Opening session for channel {channel}...', 'yellow'))
|
|
941
953
|
try:
|
|
942
954
|
dlc_options = {}
|
|
943
|
-
if self.max_frame_size:
|
|
955
|
+
if self.max_frame_size is not None:
|
|
944
956
|
dlc_options['max_frame_size'] = self.max_frame_size
|
|
945
|
-
if self.
|
|
946
|
-
dlc_options['
|
|
957
|
+
if self.initial_credits is not None:
|
|
958
|
+
dlc_options['initial_credits'] = self.initial_credits
|
|
947
959
|
rfcomm_session = await rfcomm_mux.open_dlc(channel, **dlc_options)
|
|
948
960
|
logging.info(color(f'### Session open: {rfcomm_session}', 'yellow'))
|
|
961
|
+
if self.max_credits is not None:
|
|
962
|
+
rfcomm_session.rx_max_credits = self.max_credits
|
|
963
|
+
if self.credits_threshold is not None:
|
|
964
|
+
rfcomm_session.rx_credits_threshold = self.credits_threshold
|
|
965
|
+
|
|
949
966
|
except bumble.core.ConnectionError as error:
|
|
950
967
|
logging.info(color(f'!!! Session open failed: {error}', 'red'))
|
|
951
968
|
await rfcomm_mux.disconnect()
|
|
@@ -969,8 +986,19 @@ class RfcommClient(StreamedPacketIO):
|
|
|
969
986
|
# RfcommServer
|
|
970
987
|
# -----------------------------------------------------------------------------
|
|
971
988
|
class RfcommServer(StreamedPacketIO):
|
|
972
|
-
def __init__(
|
|
989
|
+
def __init__(
|
|
990
|
+
self,
|
|
991
|
+
device,
|
|
992
|
+
channel,
|
|
993
|
+
l2cap_mtu,
|
|
994
|
+
max_frame_size,
|
|
995
|
+
initial_credits,
|
|
996
|
+
max_credits,
|
|
997
|
+
credits_threshold,
|
|
998
|
+
):
|
|
973
999
|
super().__init__()
|
|
1000
|
+
self.max_credits = max_credits
|
|
1001
|
+
self.credits_threshold = credits_threshold
|
|
974
1002
|
self.dlc = None
|
|
975
1003
|
self.ready = asyncio.Event()
|
|
976
1004
|
|
|
@@ -981,7 +1009,12 @@ class RfcommServer(StreamedPacketIO):
|
|
|
981
1009
|
rfcomm_server = bumble.rfcomm.Server(device, **server_options)
|
|
982
1010
|
|
|
983
1011
|
# Listen for incoming DLC connections
|
|
984
|
-
|
|
1012
|
+
dlc_options = {}
|
|
1013
|
+
if max_frame_size is not None:
|
|
1014
|
+
dlc_options['max_frame_size'] = max_frame_size
|
|
1015
|
+
if initial_credits is not None:
|
|
1016
|
+
dlc_options['initial_credits'] = initial_credits
|
|
1017
|
+
channel_number = rfcomm_server.listen(self.on_dlc, channel, **dlc_options)
|
|
985
1018
|
|
|
986
1019
|
# Setup the SDP to advertise this channel
|
|
987
1020
|
device.sdp_service_records = make_sdp_records(channel_number)
|
|
@@ -1004,6 +1037,10 @@ class RfcommServer(StreamedPacketIO):
|
|
|
1004
1037
|
dlc.sink = self.on_packet
|
|
1005
1038
|
self.io_sink = dlc.write
|
|
1006
1039
|
self.dlc = dlc
|
|
1040
|
+
if self.max_credits is not None:
|
|
1041
|
+
dlc.rx_max_credits = self.max_credits
|
|
1042
|
+
if self.credits_threshold is not None:
|
|
1043
|
+
dlc.rx_credits_threshold = self.credits_threshold
|
|
1007
1044
|
|
|
1008
1045
|
async def drain(self):
|
|
1009
1046
|
assert self.dlc
|
|
@@ -1321,7 +1358,9 @@ def create_mode_factory(ctx, default_mode):
|
|
|
1321
1358
|
uuid=ctx.obj['rfcomm_uuid'],
|
|
1322
1359
|
l2cap_mtu=ctx.obj['rfcomm_l2cap_mtu'],
|
|
1323
1360
|
max_frame_size=ctx.obj['rfcomm_max_frame_size'],
|
|
1324
|
-
|
|
1361
|
+
initial_credits=ctx.obj['rfcomm_initial_credits'],
|
|
1362
|
+
max_credits=ctx.obj['rfcomm_max_credits'],
|
|
1363
|
+
credits_threshold=ctx.obj['rfcomm_credits_threshold'],
|
|
1325
1364
|
)
|
|
1326
1365
|
|
|
1327
1366
|
if mode == 'rfcomm-server':
|
|
@@ -1329,6 +1368,10 @@ def create_mode_factory(ctx, default_mode):
|
|
|
1329
1368
|
device,
|
|
1330
1369
|
channel=ctx.obj['rfcomm_channel'],
|
|
1331
1370
|
l2cap_mtu=ctx.obj['rfcomm_l2cap_mtu'],
|
|
1371
|
+
max_frame_size=ctx.obj['rfcomm_max_frame_size'],
|
|
1372
|
+
initial_credits=ctx.obj['rfcomm_initial_credits'],
|
|
1373
|
+
max_credits=ctx.obj['rfcomm_max_credits'],
|
|
1374
|
+
credits_threshold=ctx.obj['rfcomm_credits_threshold'],
|
|
1332
1375
|
)
|
|
1333
1376
|
|
|
1334
1377
|
raise ValueError('invalid mode')
|
|
@@ -1427,9 +1470,19 @@ def create_role_factory(ctx, default_role):
|
|
|
1427
1470
|
help='RFComm maximum frame size',
|
|
1428
1471
|
)
|
|
1429
1472
|
@click.option(
|
|
1430
|
-
'--rfcomm-
|
|
1473
|
+
'--rfcomm-initial-credits',
|
|
1474
|
+
type=int,
|
|
1475
|
+
help='RFComm initial credits',
|
|
1476
|
+
)
|
|
1477
|
+
@click.option(
|
|
1478
|
+
'--rfcomm-max-credits',
|
|
1479
|
+
type=int,
|
|
1480
|
+
help='RFComm max credits',
|
|
1481
|
+
)
|
|
1482
|
+
@click.option(
|
|
1483
|
+
'--rfcomm-credits-threshold',
|
|
1431
1484
|
type=int,
|
|
1432
|
-
help='RFComm
|
|
1485
|
+
help='RFComm credits threshold',
|
|
1433
1486
|
)
|
|
1434
1487
|
@click.option(
|
|
1435
1488
|
'--l2cap-psm',
|
|
@@ -1530,7 +1583,9 @@ def bench(
|
|
|
1530
1583
|
rfcomm_uuid,
|
|
1531
1584
|
rfcomm_l2cap_mtu,
|
|
1532
1585
|
rfcomm_max_frame_size,
|
|
1533
|
-
|
|
1586
|
+
rfcomm_initial_credits,
|
|
1587
|
+
rfcomm_max_credits,
|
|
1588
|
+
rfcomm_credits_threshold,
|
|
1534
1589
|
l2cap_psm,
|
|
1535
1590
|
l2cap_mtu,
|
|
1536
1591
|
l2cap_mps,
|
|
@@ -1545,7 +1600,9 @@ def bench(
|
|
|
1545
1600
|
ctx.obj['rfcomm_uuid'] = rfcomm_uuid
|
|
1546
1601
|
ctx.obj['rfcomm_l2cap_mtu'] = rfcomm_l2cap_mtu
|
|
1547
1602
|
ctx.obj['rfcomm_max_frame_size'] = rfcomm_max_frame_size
|
|
1548
|
-
ctx.obj['
|
|
1603
|
+
ctx.obj['rfcomm_initial_credits'] = rfcomm_initial_credits
|
|
1604
|
+
ctx.obj['rfcomm_max_credits'] = rfcomm_max_credits
|
|
1605
|
+
ctx.obj['rfcomm_credits_threshold'] = rfcomm_credits_threshold
|
|
1549
1606
|
ctx.obj['l2cap_psm'] = l2cap_psm
|
|
1550
1607
|
ctx.obj['l2cap_mtu'] = l2cap_mtu
|
|
1551
1608
|
ctx.obj['l2cap_mps'] = l2cap_mps
|