File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ sleep( 1 )
243243-- Fullfill a table with all pre-calculated PWM values, so that we wouldn't need to do that for "all eternity"..
244244-- Table Created using Linear Interpolated Method
245245PWM_RATIO = {}
246- for i = 0 ,ABSOLUTE_MAX_THERMAL_TEMP ,1
246+ for i = 0 ,( ABSOLUTE_MAX_THERMAL_TEMP + 100 ) ,1
247247do
248248 if ( i >= 0 and i < MIN_THERMAL_TEMP )
249249 then
282282 end
283283
284284 -- Temp Above threshold to Underclock Frequencies
285- if ( TEMP > ABSOLUTE_MAX_THERMAL_TEMP )
285+ if ( TEMP >= ABSOLUTE_MAX_THERMAL_TEMP )
286286 then
287287 -- Temp is Critically Above 'ABSOLUTE_MAX_THERMAL_TEMP'
288288 os.execute ( " sleep 10 && shutdown -h +0 \" Warning: Temperature **ABOVE** 'ABSOLUTE MAX THERMAL TEMP' ( " .. ABSOLUTE_MAX_THERMAL_TEMP .. " °C )\" &" )
You can’t perform that action at this time.
0 commit comments