Skip to content

Commit

Permalink
Merge #140: Add Keepkey Webusb device ids
Browse files Browse the repository at this point in the history
6f67659 Add Keepkey Webusb device ids (Andrew Chow)

Pull request description:

  Keepkey's latest firmware uses webusb but has different device ids. Add those ids so that that interface can be used.

Tree-SHA512: 082f1eb1fd827af2e4d8380101477e879ed026910cc57413c69d941fe4bc75483ac10318f887a53796dbd44e0ce1206cba1dbc3d50ada2e0314f78748ab48faf
  • Loading branch information
achow101 committed Mar 15, 2019
2 parents a83fdc6 + 6f67659 commit 7b0e84e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hwilib/devices/trezorlib/transport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
DEV_TREZOR2 = (0x1209, 0x53C1)
DEV_TREZOR2_BL = (0x1209, 0x53C0)
DEV_KEEPKEY = (0x2B24, 0x0001)
DEV_KEEPKEY_WEBUSB = (0x2B24, 0x0002)

TREZORS = {DEV_TREZOR1, DEV_TREZOR2, DEV_TREZOR2_BL, DEV_KEEPKEY}
TREZORS = {DEV_TREZOR1, DEV_TREZOR2, DEV_TREZOR2_BL, DEV_KEEPKEY, DEV_KEEPKEY_WEBUSB}

UDEV_RULES_STR = """
Do you have udev rules installed?
Expand Down

0 comments on commit 7b0e84e

Please sign in to comment.