Skip to content

Commit

Permalink
Fix PID filter on config tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
veroxzik committed Dec 12, 2022
1 parent 26ddc48 commit 70a729f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-tool/config-tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_filtered_devices():
filter = hid.HidDeviceFilter(vendor_id = 0x0001, product_id = 0x0001)
# might be in konami spoof mode
if len(filter.get_devices()) == 0:
filter = hid.HidDeviceFilter(vendor_id = 0x1ccf, product_id = 0x8086)
filter = hid.HidDeviceFilter(vendor_id = 0x1ccf, product_id = 0x8048)
return filter.get_devices()

def send(data):
Expand Down

0 comments on commit 70a729f

Please sign in to comment.