1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 20:44:19 +00:00

Ramp up the fan more if we're over target temperature.

This commit is contained in:
Con Kolivas 2011-09-05 16:14:43 +10:00
parent bc9724406a
commit ca3793558a

2
adl.c
View File

@ -830,7 +830,7 @@ void gpu_autotune(int gpu)
} else if (temp > ga->targettemp && fanpercent < 85) { } else if (temp > ga->targettemp && fanpercent < 85) {
if (opt_debug) if (opt_debug)
applog(LOG_DEBUG, "Temperature over target, increasing fanspeed"); applog(LOG_DEBUG, "Temperature over target, increasing fanspeed");
newpercent = fanpercent + 5; newpercent = fanpercent + 10;
if (newpercent > 85) if (newpercent > 85)
newpercent = 85; newpercent = 85;
} else if (fanpercent && temp < ga->targettemp - opt_hysteresis) { } else if (fanpercent && temp < ga->targettemp - opt_hysteresis) {