Browse Source

a bit more tolerance before power fail

master
Christian Rotzoll 6 years ago
parent
commit
3fc1cdb68c
  1. 2
      home.admin/config.scripts/blitz.stresstest.sh

2
home.admin/config.scripts/blitz.stresstest.sh

@ -55,7 +55,7 @@ for (( n=0; n<15; ++n )); do
voltFloat=$(echo "${CoreVoltage/V/}*1000000" | bc)
voltInt=${voltFloat/.*}
#echo "V -> ${voltFloat}/${voltInt}"
if [ ${voltInt} -lt 1200100 ]; then
if [ ${voltInt} -lt 1200100 ] && [ ${powerWARN} -gt 0 ]; then
powerFAIL=1
fi
if [ ${voltInt} -lt 1250000 ]; then

Loading…
Cancel
Save