1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-06-30 20:02:34 +00:00

src: disable u2f in debug builds

This commit is contained in:
Pavol Rusnak 2018-02-09 16:45:36 +01:00
parent e888b6b967
commit e93ef0c296
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -18,7 +18,21 @@ usb_wire = io.WebUSB(
ep_out=0x01,
)
usb_u2f = io.HID(
if __debug__:
usb_debug = io.WebUSB(
iface_num=1,
ep_in=0x82,
ep_out=0x02,
)
usb_vcp = io.VCP(
iface_num=2,
data_iface_num=3,
ep_in=0x83,
ep_out=0x03,
ep_cmd=0x84,
)
else:
usb_u2f = io.HID(
iface_num=1,
ep_in=0x82,
ep_out=0x02,
@ -40,20 +54,6 @@ usb_u2f = io.HID(
0x91, 0x02, # OUTPUT (Data,Var,Abs)
0xc0, # END_COLLECTION
]),
)
if __debug__:
usb_debug = io.WebUSB(
iface_num=2,
ep_in=0x85,
ep_out=0x05,
)
usb_vcp = io.VCP(
iface_num=3,
data_iface_num=4,
ep_in=0x83,
ep_out=0x03,
ep_cmd=0x84,
)
usb = io.USB(
@ -67,28 +67,31 @@ usb = io.USB(
)
usb.add(usb_wire)
usb.add(usb_u2f)
if __debug__:
usb.add(usb_debug)
usb.add(usb_vcp)
else:
usb.add(usb_u2f)
# load applications
if __debug__:
from apps import debug
from apps import homescreen
from apps import management
from apps import wallet
from apps import ethereum
from apps import fido_u2f
if __debug__:
from apps import debug
else:
from apps import fido_u2f
# boot applications
if __debug__:
debug.boot()
homescreen.boot()
management.boot()
wallet.boot()
ethereum.boot()
fido_u2f.boot(usb_u2f)
if __debug__:
debug.boot()
else:
fido_u2f.boot(usb_u2f)
# initialize the wire codec and start the USB
wire.setup(usb_wire)