Skip to content

Commit

Permalink
Anime Matrix hibernate wake-up tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Feb 9, 2024
1 parent af001b0 commit 428b624
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
16 changes: 16 additions & 0 deletions app/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,22 @@ public static bool IsFanScale()
}
}

public static bool IsSwappedFans()
{
if (!ContainsModel("GA503")) return false;
if (Modes.GetCurrent() != 0) return false;

try
{
var (bios, model) = GetBiosAndModel();
return (Int32.Parse(bios) == 317);
}
catch
{
return false;
}
}

public static bool IsFanRequired()
{
return ContainsModel("GA402X") || ContainsModel("G513") || ContainsModel("G713R") || ContainsModel("G713P");
Expand Down
6 changes: 5 additions & 1 deletion app/AsusACPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,11 @@ public int SetFanCurve(AsusFan device, byte[] curve)

if (fanScale != 100 && device == AsusFan.CPU) Logger.WriteLine("Custom fan scale: " + fanScale);

// it seems to be a bug, when some old model's bios can go nuts if fan is set to 100%
if (AppConfig.IsSwappedFans())
{
device = (device == AsusFan.CPU) ? AsusFan.GPU : AsusFan.CPU;
Logger.WriteLine("Swapped fan fix");
}

for (int i = 8; i < curve.Length; i++) curve[i] = (byte)(Math.Max((byte)0, Math.Min((byte)100, curve[i])) * fanScale / 100);

Expand Down

0 comments on commit 428b624

Please sign in to comment.