Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/qmk_hid/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def find_devs(show, verbose):
print("Usage Page not matching")
continue
# Lots of false positives, so at least skip Framework false positives
if vid == FWK_VID and pid not in [0x12, 0x13, 0x14, 0x18, 0x19]:
if vid == FWK_VID and pid not in [0x12, 0x13, 0x14, 0x18, 0x19, 0x30]:
if verbose:
print("False positive, device is not allowed")
continue
Expand Down