From 7bc22168eec798d3171af21977158d0e3570a066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Jouault?= Date: Sun, 2 Nov 2025 21:08:59 +0100 Subject: [PATCH] Added new PID 0x55d3 to supported PIDs As seen on an ESP32 S3 board. --- src/usbIds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usbIds.ts b/src/usbIds.ts index c4f8c7c..487c97f 100644 --- a/src/usbIds.ts +++ b/src/usbIds.ts @@ -5,7 +5,7 @@ const supportedVids = [0x2e8a, 0x10c4, 0x1a86, 0x303a, 0xf055]; const supportedPids = [ 0x0005, 0xea60, 0x7523, 0x1001, 0x9802, 0x7002, 0x7003, 0x7006, 0x7007, 0x1020, 0x101f, 0x1021, 0x1086, 0x4001, 0x105b, 0x10a3, 0x10a4, 0x10a5, - 0x1016, 0x1002, 0x1003, + 0x1016, 0x1002, 0x1003, 0x55d3, ]; export function isUsbDeviceSupported(port: PortInfo): boolean {