From bff2676b6419ca169c46bc3a03c146d037cf15b4 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Fri, 8 Sep 2023 19:47:12 +0200 Subject: [PATCH] Calibrate in turbo mode --- app/Fans.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Fans.cs b/app/Fans.cs index f15c3e67..3a7e4e37 100644 --- a/app/Fans.cs +++ b/app/Fans.cs @@ -284,6 +284,8 @@ namespace GHelper AppConfig.Remove("fan_max_" + i); } + Program.acpi.DeviceSet(AsusACPI.PerformanceMode, AsusACPI.PerformanceTurbo, "ModeCalibration"); + for (int i = 0; i < FAN_COUNT; i++) Program.acpi.SetFanCurve((AsusFan)i, new byte[] { 20, 30, 40, 50, 60, 70, 80, 90, 100, 100, 100, 100, 100, 100, 100, 100 }); }