mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Add support for Ledger Nano S Plus
This commit is contained in:
parent
2b7b5ce093
commit
e536a2be13
1 changed files with 3 additions and 1 deletions
|
@ -552,7 +552,7 @@ class LedgerPlugin(HW_PluginBase):
|
||||||
(0x2c97, 0x0004), # Nano-X
|
(0x2c97, 0x0004), # Nano-X
|
||||||
(0x2c97, 0x4011), # Nano-X app-bitcoin >= 1.5.1
|
(0x2c97, 0x4011), # Nano-X app-bitcoin >= 1.5.1
|
||||||
(0x2c97, 0x4015), # Nano-X app-bitcoin >= 1.5.1
|
(0x2c97, 0x4015), # Nano-X app-bitcoin >= 1.5.1
|
||||||
(0x2c97, 0x0005), # RFU
|
(0x2c97, 0x0005), # Nano-S Plus
|
||||||
(0x2c97, 0x0006), # RFU
|
(0x2c97, 0x0006), # RFU
|
||||||
(0x2c97, 0x0007), # RFU
|
(0x2c97, 0x0007), # RFU
|
||||||
(0x2c97, 0x0008), # RFU
|
(0x2c97, 0x0008), # RFU
|
||||||
|
@ -573,6 +573,8 @@ class LedgerPlugin(HW_PluginBase):
|
||||||
ledger = True
|
ledger = True
|
||||||
if device.product_key[0] == 0x2581 and device.product_key[1] == 0x4b7c:
|
if device.product_key[0] == 0x2581 and device.product_key[1] == 0x4b7c:
|
||||||
ledger = True
|
ledger = True
|
||||||
|
if device.product_key[0] == 0x2c97 and device.product_key[1] == 0x0005:
|
||||||
|
ledger = True
|
||||||
if device.product_key[0] == 0x2c97:
|
if device.product_key[0] == 0x2c97:
|
||||||
if device.interface_number == 0 or device.usage_page == 0xffa0:
|
if device.interface_number == 0 or device.usage_page == 0xffa0:
|
||||||
ledger = True
|
ledger = True
|
||||||
|
|
Loading…
Add table
Reference in a new issue