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-08 18:58:34 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-11-08 18:58:34 +0300
commit8b2a3a845ae62f15f64c5b1cf378b9a1f47d00d1 (patch)
tree35a1b9aaf67bb05822d0da2393318c947b73b0fd /src/GCodes
parentb6b01e7dee090ab8e7bce9bd0694a58f2474e8b7 (diff)
Increased MaxExtruders to 8 on Duet 3 Mini
Also removed NumDefaultExtruders
Diffstat (limited to 'src/GCodes')
-rw-r--r--src/GCodes/GCodes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodes.cpp b/src/GCodes/GCodes.cpp
index 8f922941..ff28a27c 100644
--- a/src/GCodes/GCodes.cpp
+++ b/src/GCodes/GCodes.cpp
@@ -158,7 +158,7 @@ void GCodes::Init() noexcept
axisLetters[1] = 'Y';
axisLetters[2] = 'Z';
- numExtruders = NumDefaultExtruders;
+ numExtruders = 0;
Reset();