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>2018-01-14 13:50:40 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-01-22 23:11:10 +0300
commitcc8de620887759dbb6ade8b5b0bffc6e9194222e (patch)
tree81ffec739da90acfd0d4eddfaf4e1d0abf95b7b1 /src/Fan.cpp
parente2f506e855785d0f0d9786f1285deebf1d51bad8 (diff)
Version 1.21RC0
Fix stepper driver warning/error messages Reduce SPI speed on Duet Ethernet M350 Enn with just one E value given is now applied to all extruders Corrected nonlinear extrusion steps calculation Refactored the filament monitor support Added laser filament monitor support Added pulse-type filament monitor support Corrected display of M574 endstop type when the type is active low Added support for extruder "endstops" using motor load detection M305 Pn with no other parameters no longer allocates a thermistor to the heater
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;