Created
August 9, 2015 02:05
-
-
Save psyke83/aff2c36d02cb1b4cd7d5 to your computer and use it in GitHub Desktop.
OpenHardwareMonitor - workaround for incorrect 511C temperature sensor reading on ATI M7 R260
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Hardware/ATI/ATIGPU.cs 2015-08-05 04:31:55.561100679 +0100 | |
+++ Hardware/ATI/ATIGPU.cs 2015-08-05 05:01:28.975189988 +0100 | |
@@ -102,7 +102,7 @@ | |
public override void Update() { | |
ADLTemperature adlt = new ADLTemperature(); | |
if (ADL.ADL_Overdrive5_Temperature_Get(adapterIndex, 0, ref adlt) | |
- == ADL.ADL_OK) | |
+ == ADL.ADL_OK && adlt.Temperature < 511000) | |
{ | |
temperature.Value = 0.001f * adlt.Temperature; | |
ActivateSensor(temperature); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment