From f07c6a9c57421184f401f6cec573b6402f4c6ef9 Mon Sep 17 00:00:00 2001 From: nightfire37 <5314844+nightfire37@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:47:16 -0400 Subject: [PATCH] Update VangoghGPU.cs Updated this file with higher max values for a potential fix for overclocking --- PowerControl/Helpers/AMD/VangoghGPU.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PowerControl/Helpers/AMD/VangoghGPU.cs b/PowerControl/Helpers/AMD/VangoghGPU.cs index cbe402b..9a927db 100644 --- a/PowerControl/Helpers/AMD/VangoghGPU.cs +++ b/PowerControl/Helpers/AMD/VangoghGPU.cs @@ -182,7 +182,7 @@ namespace PowerControl.Helpers.AMD } const uint MIN_TDP = 3000; - const uint MAX_TDP = 21000; + const uint MAX_TDP = 45000; public uint SlowTDP { @@ -206,8 +206,8 @@ namespace PowerControl.Helpers.AMD get { return getValue(Message.PPSMC_MSG_GetFclkFrequency); } } - const uint MIN_CPU_CLOCK = 1400; - const uint MAX_CPU_CLOCK = 4000; + const uint MIN_CPU_CLOCK = 600; + const uint MAX_CPU_CLOCK = 4500; public uint MinCPUClock { @@ -220,7 +220,7 @@ namespace PowerControl.Helpers.AMD } const uint MIN_GFX_CLOCK = 200; - const uint MAX_GFX_CLOCK = 1900; + const uint MAX_GFX_CLOCK = 2500; public uint HardMinGfxClock {