From 37d4727d68314ccbbd696287f7f4c7a504a0b8f5 Mon Sep 17 00:00:00 2001 From: X3n0m0rph59 Date: Sat, 8 Oct 2022 14:43:31 +0200 Subject: [PATCH] Reduce wait time Lower the timeout somewhat and see if it still working References #161 --- eruption/src/hwdevices/roccat_vulcan_1xx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eruption/src/hwdevices/roccat_vulcan_1xx.rs b/eruption/src/hwdevices/roccat_vulcan_1xx.rs index c2c92cf33..b4cb6e4fa 100644 --- a/eruption/src/hwdevices/roccat_vulcan_1xx.rs +++ b/eruption/src/hwdevices/roccat_vulcan_1xx.rs @@ -449,7 +449,7 @@ impl RoccatVulcan1xx { Err(HwDeviceError::DeviceNotOpened {}.into()) } else { // This helps slow USB HUBs and KVM switches to not fail to init the device - thread::sleep(Duration::from_millis(25)); + thread::sleep(Duration::from_millis(15)); loop { let mut buf: [u8; 4] = [0; 4];