Commit 3625b83c63965fc80358327eb7c2bc6bd8be2dd9

Ryan C. Gordon 2020-04-21T01:32:48

hid: Add Razer Arctosa keyboard to hid enumeration blacklist. Hangs SDL, same as the Razer Lycosa. Fixes Bugzilla #5101.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c
index 2f66c50..d0aef74 100644
--- a/src/hidapi/windows/hid.c
+++ b/src/hidapi/windows/hid.c
@@ -326,6 +326,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id)
 		return 1;
 	}
 
+	// Razer Arctosa Gaming keyboard - Causes deadlock when asking for device details
+	if ( vendor_id == 0x1532 && product_id == 0x010B )
+	{
+		return 1;
+	}
+
 	// SPEEDLINK COMPETITION PRO - turns into an Android controller when enumerated
 	if ( vendor_id == 0x0738 && product_id == 0x2217 )
 	{