Skip to content

Instantly share code, notes, and snippets.

@psyke83
Created August 9, 2015 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psyke83/aff2c36d02cb1b4cd7d5 to your computer and use it in GitHub Desktop.
Save psyke83/aff2c36d02cb1b4cd7d5 to your computer and use it in GitHub Desktop.
OpenHardwareMonitor - workaround for incorrect 511C temperature sensor reading on ATI M7 R260
--- 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