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>2016-11-12 21:40:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2016-11-12 21:40:28 +0300
commit35a9a1a7074858f7784c362bc291809a88ea5f4a (patch)
tree162fbbb796a6820d76e4c64aad508b49d9295337 /src/PrintMonitor.cpp
parent500a5df6f117802473b61259725f9e3c413e7d9a (diff)
Version 1.17-dev1
Support R and S parameters in M109 and M190 as Marlin does Added support for M191 Added support for Steinhart-Hart C parameter Thermistor disconnected threshold now depends on thermistor parameters
Diffstat (limited to 'src/PrintMonitor.cpp')
-rw-r--r--src/PrintMonitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PrintMonitor.cpp b/src/PrintMonitor.cpp
index 67dd85a7..6901e555 100644
--- a/src/PrintMonitor.cpp
+++ b/src/PrintMonitor.cpp
@@ -88,7 +88,7 @@ void PrintMonitor::Spin()
// Check if this heater is assigned to a tool and if it has reached its set temperature yet
if (reprap.IsHeaterAssignedToTool(heater))
{
- if (!reprap.GetHeat()->HeaterAtSetTemperature(heater))
+ if (!reprap.GetHeat()->HeaterAtSetTemperature(heater, false))
{
nozzleAtHighTemperature = false;
break;