Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Heating/LocalHeater.cpp')
-rw-r--r--src/Heating/LocalHeater.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/Heating/LocalHeater.cpp b/src/Heating/LocalHeater.cpp
index eb0ffdd1..79847e02 100644
--- a/src/Heating/LocalHeater.cpp
+++ b/src/Heating/LocalHeater.cpp
@@ -297,7 +297,7 @@ void LocalHeater::Spin() noexcept
else
{
const uint32_t now = millis();
- if ((float)(millis() - timeSetHeating) < GetModel().GetDeadTime() * SecondsToMillis * 1.5)
+ if ((float)(now - timeSetHeating) < GetModel().GetDeadTime() * SecondsToMillis * 1.5)
{
// Record the temperature for when we are past the dead time
lastTemperatureValue = temperature;
@@ -322,12 +322,15 @@ void LocalHeater::Spin() noexcept
GetHeaterNumber(), (double)temperature, (double)derivative, (double)expectedRate);
}
}
- else if (heatingFaultCount != 0)
+ else
{
- --heatingFaultCount;
+ lastTemperatureValue = temperature;
+ lastTemperatureMillis = now;
+ if (heatingFaultCount != 0)
+ {
+ --heatingFaultCount;
+ }
}
- lastTemperatureValue = temperature;
- lastTemperatureMillis = now;
}
}
}