1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

use same product id for bootloader mode as well

This commit is contained in:
Pavol Rusnak 2013-10-22 16:22:04 +02:00
parent c01830462a
commit 817cd6ea86

View File

@ -6,8 +6,7 @@ from transport import Transport, NotImplementedException
DEVICE_IDS = [
(0x10c4, 0xea80), # Trezor Pi
(0x534c, 0x0000), # Trezor - Bootloader Mode
(0x534c, 0x0001), # Trezor - Regular Mode
(0x534c, 0x0001), # Trezor
]
class FakeRead(object):