From bd32b43065090ac5bee1b7bdf3bcb4f9ed7e8f40 Mon Sep 17 00:00:00 2001 From: Samuel Holland Date: Sat, 31 Jul 2021 13:31:26 -0500 Subject: [PATCH] usb-flasher: Update stock firmware's USB product ID The third batch of review samples was flashed with a different stock firmware, and advertised a different product ID. --- usb-flasher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usb-flasher.c b/usb-flasher.c index 8a907d4..d6a9550 100644 --- a/usb-flasher.c +++ b/usb-flasher.c @@ -30,7 +30,7 @@ int bootloader_open(void) // first check if keyboard USB device is available, if it is // we need to first switch to bootloader mode - fd = open_usb_dev(0x04f3, 0x1812); + fd = open_usb_dev(0x04f3, 0x1910); if (fd >= 0) { printf("Found USB device for the vendor firmware, swithing to USB bootloader\n");