From b34902eee9390ca045efe5badab714725e45aa8e Mon Sep 17 00:00:00 2001 From: emmanuelm41 Date: Wed, 9 Oct 2024 12:01:07 -0300 Subject: [PATCH] fix: add product id for nanos+ when an app is opened --- ledger_hid.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ledger_hid.go b/ledger_hid.go index 6f8a1a6..f018fae 100644 --- a/ledger_hid.go +++ b/ledger_hid.go @@ -49,7 +49,8 @@ var supportedLedgerProductID = map[uint16]int{ 0x4011: 0, // Ledger Nano X 0x1011: 0, // Ledger Nano S 0x1: 0, // Ledger Nano S - 0x5011: 0, // Ledger Nano S Plus + 0x5015: 0, // Ledger Nano S Plus (when an app is opened, seen from manual testing on ubuntu) + 0x5011: 0, // Ledger Nano S Plus (when the device is on main menu, seen from manual testing on ubuntu) 0x5: 0, // Ledger Nano S Plus }