From 39ee31eb0f42b10b4026cb472cc7c4c6cc270308 Mon Sep 17 00:00:00 2001 From: Naxdy Date: Sat, 30 Mar 2024 08:10:12 +0100 Subject: [PATCH] change(config): increase delay between button presses --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 870e6cd..b79a613 100644 --- a/src/config.rs +++ b/src/config.rs @@ -547,7 +547,7 @@ impl<'a> StickCalibrationProcess<'a> { .await; // Prevent accidental double presses - Timer::after_millis(20).await; + Timer::after_millis(500).await; gcc_subscriber .wait_for_button_press(&AwaitableButtons::A)