Remove link-relay and RemoteLink

This commit is contained in:
Josh Wu
2025-07-21 11:32:16 +08:00
parent 1a81c5d05c
commit 1b44e73f90
68 changed files with 114 additions and 749 deletions

View File

@@ -50,7 +50,7 @@ def do_parse(firmware_path):
# -----------------------------------------------------------------------------
async def do_load(usb_transport, force):
async with await transport.open_transport_or_link(usb_transport) as (
async with await transport.open_transport(usb_transport) as (
hci_source,
hci_sink,
):
@@ -69,7 +69,7 @@ async def do_load(usb_transport, force):
# -----------------------------------------------------------------------------
async def do_drop(usb_transport):
async with await transport.open_transport_or_link(usb_transport) as (
async with await transport.open_transport(usb_transport) as (
hci_source,
hci_sink,
):