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"]]:
|
||||
from .ble import BleTransport
|
||||
from .bridge import BridgeTransport
|
||||
from .hid import HidTransport
|
||||
from .udp import UdpTransport
|
||||
from .webusb import WebUsbTransport
|
||||
|
||||
transports: Tuple[Type["Transport"], ...] = (
|
||||
BridgeTransport,
|
||||
HidTransport,
|
||||
UdpTransport,
|
||||
WebUsbTransport,
|
||||
# BridgeTransport,
|
||||
# HidTransport,
|
||||
# UdpTransport,
|
||||
# WebUsbTransport,
|
||||
BleTransport,
|
||||
)
|
||||
return set(t for t in transports if t.ENABLED)
|
||||
|
Loading…
Reference in New Issue
Block a user