mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 09:28:13 +00:00
TEST: BLE only communication
This commit is contained in:
parent
4a51bb9fc7
commit
f8f7dc3c8d
@ -114,16 +114,12 @@ class Transport:
|
|||||||
|
|
||||||
def all_transports() -> Iterable[Type["Transport"]]:
|
def all_transports() -> Iterable[Type["Transport"]]:
|
||||||
from .ble import BleTransport
|
from .ble import BleTransport
|
||||||
from .bridge import BridgeTransport
|
|
||||||
from .hid import HidTransport
|
|
||||||
from .udp import UdpTransport
|
|
||||||
from .webusb import WebUsbTransport
|
|
||||||
|
|
||||||
transports: Tuple[Type["Transport"], ...] = (
|
transports: Tuple[Type["Transport"], ...] = (
|
||||||
BridgeTransport,
|
# BridgeTransport,
|
||||||
HidTransport,
|
# HidTransport,
|
||||||
UdpTransport,
|
# UdpTransport,
|
||||||
WebUsbTransport,
|
# WebUsbTransport,
|
||||||
BleTransport,
|
BleTransport,
|
||||||
)
|
)
|
||||||
return set(t for t in transports if t.ENABLED)
|
return set(t for t in transports if t.ENABLED)
|
||||||
|
Loading…
Reference in New Issue
Block a user