From 125bdcc257e69ace9aa320adc2c6cd41404b4cc2 Mon Sep 17 00:00:00 2001 From: Sparronator9999 <86388887+Sparronator9999@users.noreply.github.com> Date: Fri, 3 Jan 2025 19:50:22 +1100 Subject: [PATCH] Increase EC status wait timeout to 10 ms A user was having some trouble reading from EC consistently --- YAMDCC.ECAccess/EC.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YAMDCC.ECAccess/EC.cs b/YAMDCC.ECAccess/EC.cs index 3cbefce..0be90f5 100644 --- a/YAMDCC.ECAccess/EC.cs +++ b/YAMDCC.ECAccess/EC.cs @@ -63,7 +63,7 @@ private enum ECCommand : byte /// to wait for an EC status. /// private static readonly long ECStatusTimeoutTicks = - Stopwatch.Frequency / 200; // 5 ms, should be plenty for EC status waits + Stopwatch.Frequency / 100; // 10 ms, should be plenty for EC status waits /// /// Used to synchronise EC access.