1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-17 03:48:09 +00:00

hid: fix product_ids for v2

This commit is contained in:
Pavol Rusnak 2017-09-04 14:31:15 +02:00
parent 52f96b3792
commit 2a3f613242
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -26,8 +26,8 @@ from .protocol_v2 import ProtocolV2
from .transport import Transport
DEV_TREZOR1 = (0x534c, 0x0001)
DEV_TREZOR2 = (0x1209, 0x53c0)
DEV_TREZOR2_BL = (0x1209, 0x1201)
DEV_TREZOR2 = (0x1209, 0x53c1)
DEV_TREZOR2_BL = (0x1209, 0x53c0)
class HidTransport(Transport):