From 75cfbe4a31c52a45e97a765114fa0022a2979979 Mon Sep 17 00:00:00 2001 From: bpavlina <324717332+bpavlina@users.noreply.github.com> Date: Fri, 4 Sep 2026 16:44:58 -0400 Subject: [PATCH] supported-mice: mark the Lamzu Inca 8K as PR-pending with its PIDs The Inca enumerates under Lamzu's own vendor id 0x37b0 rather than the shared CompX ODM id 0x373e that every other Lamzu, CRDRAKO and Attack Shark product uses, so the driver never saw it. The row's old note said only that a PID was missing from an existing driver, which understated it. Read-only support is now open upstream in mouse-protocol. The three product ids are pinned now: 0x0009 the mouse on its cable and 0x0010 the 8K receiver, both confirmed on hardware, and 0x000f the 1K receiver, which comes from the vendor's device table alone and has not been exercised. A "pr" row is exempt from the PID_UNIVERSE check, so this stays green against the currently published protocol; the flip to "supported", plus the matching PID_UNIVERSE entry, follows that merge. The row deliberately keeps the model name "Inca" rather than "Inca 8K". The live overlay matches request votes by brand and model, and its fuzzy matcher ignores single-word model names, so renaming this row would orphan the request count it already carries. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_018C96pMdnhGcXhLQhHYkLWc --- src/supported-mice.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/supported-mice.ts b/src/supported-mice.ts index 288ef22b..a224766c 100644 --- a/src/supported-mice.ts +++ b/src/supported-mice.ts @@ -467,8 +467,9 @@ export const MICE: Mouse[] = [ { brand: "Lamzu", model: "Maya X", status: "supported", req: 1, pids: [0x001c, 0x001d, 0x001e], note: "PIDs 0x001c/0x001d/0x001e in Lamzu driver" }, - { brand: "Lamzu", model: "Inca", status: "quickwin", req: 1, - note: "CompX protocol implemented; Inca PID not yet in driver" }, + { brand: "Lamzu", model: "Inca", status: "pr", req: 1, + pids: [0x0009, 0x000f, 0x0010], + note: "Inca 8K enumerates under Lamzu's own VID 0x37b0, not the shared CompX 0x373e; read-only support open in mouse-protocol" }, { brand: "Lamzu", model: "Thorn", status: "quickwin", req: 1, note: "CompX protocol implemented; Thorn PID not yet in driver" }, { brand: "CRDRAKO", model: "KO-ONE", status: "supported", req: 1,