From 204341766819850f09a6ef49aeb55efb8486bbbe Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Mon, 15 Jun 2020 16:44:46 +0200 Subject: [PATCH] changed thread period (250->500) for recipe --- Thermo.Active.Core/ThreadsFunctions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Thermo.Active.Core/ThreadsFunctions.cs b/Thermo.Active.Core/ThreadsFunctions.cs index 524d974a..b9a1f55d 100644 --- a/Thermo.Active.Core/ThreadsFunctions.cs +++ b/Thermo.Active.Core/ThreadsFunctions.cs @@ -935,7 +935,7 @@ public static class ThreadsFunctions // Update thread timer UpdateStat(MethodBase.GetCurrentMethod().Name, sw.ElapsedMilliseconds); // Wait - Thread.Sleep(CalcSleepTime(250, (int)sw.ElapsedMilliseconds)); + Thread.Sleep(CalcSleepTime(400, (int)sw.ElapsedMilliseconds)); } } catch (ThreadAbortException)