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/Fan.cpp')
-rw-r--r--src/Fan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fan.cpp b/src/Fan.cpp
index d704abbe..efd73200 100644
--- a/src/Fan.cpp
+++ b/src/Fan.cpp
@@ -97,7 +97,7 @@ bool Fan::Configure(unsigned int mcode, int fanNum, GCodeBuffer& gb, StringRef&
seen = true;
int32_t heaters[Heaters + MaxVirtualHeaters]; // signed because we use H-1 to disable thermostatic mode
size_t numH = ARRAY_SIZE(heaters);
- gb.GetIntArray(heaters, numH);
+ gb.GetIntArray(heaters, numH, false);
// Note that M106 H-1 disables thermostatic mode. The following code implements that automatically.
heatersMonitored = 0;