Skip to content

Commit c2e7004

Browse files
committed
python: Add copilot USB PID
A new firmware introduced with Framework 16 AMD Ryzen AI 300 for prebuilt usage with Windows. Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 1f110c6 commit c2e7004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/qmk_hid/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def find_devs(show, verbose):
124124
print("Usage Page not matching")
125125
continue
126126
# Lots of false positives, so at least skip Framework false positives
127-
if vid == FWK_VID and pid not in [0x12, 0x13, 0x14, 0x18, 0x19]:
127+
if vid == FWK_VID and pid not in [0x12, 0x13, 0x14, 0x18, 0x19, 0x30]:
128128
if verbose:
129129
print("False positive, device is not allowed")
130130
continue

0 commit comments

Comments
 (0)