From 3a02caeb6de02ac77438aa2d0952ad281d7978ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thea=20Sch=C3=B6bl?= Date: Thu, 7 Nov 2024 21:53:59 +0100 Subject: [PATCH] fix: pre-production devices are not recognized by the device manager --- src/lib/serial/device.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/serial/device.ts b/src/lib/serial/device.ts index fff7b0f5..c3ed908d 100644 --- a/src/lib/serial/device.ts +++ b/src/lib/serial/device.ts @@ -12,7 +12,7 @@ import { browser } from "$app/environment"; const PORT_FILTERS: Map = new Map([ ["ONE M0", { usbProductId: 32783, usbVendorId: 9114 }], - ["TWO S3", { usbProductId: 0x8252, usbVendorId: 0x303a }], // TODO: remove this after everyone has migrated + ["TWO S3 (pre-production)", { usbProductId: 0x8252, usbVendorId: 0x303a }], // TODO: remove this after everyone has migrated ["TWO S3", { usbProductId: 0x8253, usbVendorId: 0x303a }], ["LITE S2", { usbProductId: 33070, usbVendorId: 12346 }], ["LITE M0", { usbProductId: 32796, usbVendorId: 9114 }],