mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-07 23:28:07 +00:00
48 lines
967 B
Python
48 lines
967 B
Python
from mutex import Mutex
|
|
|
|
from trezor import log, loop, utils, wire, workflow
|
|
|
|
import apps.base
|
|
import usb
|
|
|
|
apps.base.boot()
|
|
|
|
if not utils.BITCOIN_ONLY and usb.ENABLE_IFACE_WEBAUTHN:
|
|
import apps.webauthn
|
|
|
|
apps.webauthn.boot()
|
|
|
|
if __debug__:
|
|
import apps.debug
|
|
|
|
apps.debug.boot()
|
|
|
|
# run main event loop and specify which screen is the default
|
|
apps.base.set_homescreen()
|
|
workflow.start_default()
|
|
|
|
|
|
mutex = Mutex()
|
|
|
|
mutex.add(usb.iface_wire.iface_num())
|
|
mutex.add(usb.iface_debug.iface_num())
|
|
|
|
# initialize the wire codec
|
|
wire.setup(usb.iface_wire, mutex=mutex)
|
|
if __debug__:
|
|
wire.setup(usb.iface_debug, is_debug_session=True)
|
|
|
|
if utils.USE_BLE:
|
|
import bluetooth
|
|
|
|
mutex.add(bluetooth.iface_ble_int.iface_num())
|
|
mutex.add(bluetooth.iface_ble_ext.iface_num())
|
|
wire.setup(bluetooth.iface_ble_int, mutex=mutex)
|
|
wire.setup(bluetooth.iface_ble_ext, mutex=mutex)
|
|
|
|
|
|
loop.run()
|
|
|
|
if __debug__:
|
|
log.debug(__name__, "Restarting main loop")
|