From eaaa809e407399b0feb10cb80a1bd10cfe0e050c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 15 Apr 2020 13:33:09 -0400 Subject: [PATCH] hidapi: Blacklist the Razer Lycosa keyboard from enumeration. It's not a joystick and it hangs device enumeration. --- src/hidapi/windows/hid.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c index 715450c5d5..2f66c503c3 100644 --- a/src/hidapi/windows/hid.c +++ b/src/hidapi/windows/hid.c @@ -320,6 +320,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id) return 1; } + // Razer Lycosa Gaming keyboard - Causes deadlock when asking for device details + if ( vendor_id == 0x1532 && product_id == 0x0109 ) + { + return 1; + } + // SPEEDLINK COMPETITION PRO - turns into an Android controller when enumerated if ( vendor_id == 0x0738 && product_id == 0x2217 ) {