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>2020-02-04 00:36:21 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-02-04 00:36:21 +0300
commit45a48cb7db2a853beb33c0bfcd727241133f82e0 (patch)
tree3342cb03c836c9265f05f1d18ee0c3a4592576b9 /src/DuetNG
parent59488fdd6744715122cdaf0db0ca99cb3e61a6ac (diff)
Various
Endstops for invisible axes are now reported in the object model Increased max extruders on Duet WiFi/Ethernet to 7 M999 can now be used to reset expansion boards Use exceptions to handle out-of-range CAN addresses in GCode requests
Diffstat (limited to 'src/DuetNG')
-rw-r--r--src/DuetNG/Pins_DuetNG.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DuetNG/Pins_DuetNG.h b/src/DuetNG/Pins_DuetNG.h
index 8db247e6..a9b06cf7 100644
--- a/src/DuetNG/Pins_DuetNG.h
+++ b/src/DuetNG/Pins_DuetNG.h
@@ -84,7 +84,7 @@ constexpr size_t MinAxes = 3; // The minimum and default number of axes
constexpr size_t MaxAxes = 9; // The maximum number of movement axes in the machine, usually just X, Y and Z, <= DRIVES
constexpr size_t MaxDriversPerAxis = 5; // The maximum number of stepper drivers assigned to one axis
-constexpr size_t MaxExtruders = 6; // The maximum number of extruders
+constexpr size_t MaxExtruders = 7; // The maximum number of extruders
constexpr size_t NumDefaultExtruders = 1; // The number of drivers that we configure as extruders by default
constexpr size_t MaxAxesPlusExtruders = 12;