1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-03 12:00:59 +00:00
trezor-firmware/src/main.py
2016-12-08 16:19:09 +01:00

37 lines
908 B
Python

import trezor.main
from trezor import msg
from trezor import ui
from trezor import wire
# Load all applications
from apps import homescreen
from apps import management
from apps import wallet
from apps import ethereum
from apps import debug
# Initialize all applications
homescreen.boot()
management.boot()
wallet.boot()
ethereum.boot()
debug.boot()
# Change backlight to white for better visibility
ui.display.backlight(ui.BACKLIGHT_NORMAL)
# Just a demo to show how to register USB ifaces
msg.set_interfaces([0xFF00, 0xFF01, 0xF1D0])
# and list them
for i, up in enumerate(msg.get_interfaces()):
print("iface %d: usage_page 0x%04x" % (i + 1, up))
# Initialize the wire codec pipeline
wire.setup(0xFF00)
# Load default homescreen
from apps.homescreen.homescreen import layout_homescreen
# Run main even loop and specify which screen is default
trezor.main.run(default_workflow=layout_homescreen)