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:
authorDavid Crocker <dcrocker@eschertech.com>2021-08-13 17:18:44 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-08-13 17:18:44 +0300
commit7a8b7c29bad7af57580201bc6b65907b5a8570e1 (patch)
tree7ec3ecdc40f2d8a3d54498c0e6e292d56398ad32 /src/Heating/LocalHeater.h
parent51e7f518074f099ec7f7bc9fd2632d156bf7e441 (diff)
Fixed heating fault detection for heaters with slow cooling rates
Diffstat (limited to 'src/Heating/LocalHeater.h')
-rw-r--r--src/Heating/LocalHeater.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Heating/LocalHeater.h b/src/Heating/LocalHeater.h
index c107c2d3..f9988ff4 100644
--- a/src/Heating/LocalHeater.h
+++ b/src/Heating/LocalHeater.h
@@ -21,7 +21,7 @@ class HeaterMonitor;
class LocalHeater : public Heater
{
- static const size_t NumPreviousTemperatures = 4; // How many samples we average the temperature derivative over
+ static const size_t NumPreviousTemperatures = 8; // How many samples we average the temperature derivative over
public:
LocalHeater(unsigned int heaterNum) noexcept;