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-11-22 14:56:30 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-11-22 14:56:30 +0300
commit9481ad7c331a59aaaafe5259e48078f57c66e397 (patch)
tree0096270a3ea0780eb5dc1ea4553e11aa734388fe
parent5503b58507f2ca199397c14d2d162b7ad53262a0 (diff)
Another fix for the M307 A parameter
-rw-r--r--src/Heating/Heater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Heating/Heater.cpp b/src/Heating/Heater.cpp
index b044b37b..69d5c950 100644
--- a/src/Heating/Heater.cpp
+++ b/src/Heating/Heater.cpp
@@ -178,7 +178,7 @@ GCodeResult Heater::SetOrReportModel(unsigned int heater, GCodeBuffer& gb, const
{
// Old style heating model. A = gain, C = cooling time constant
seen = true;
- heatingRate = gain * basicCoolingRate * 100.0;
+ heatingRate = gain * basicCoolingRate * 0.01;
}
}