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/RepRapFirmware.h
parentb6b01e7dee090ab8e7bce9bd0694a58f2474e8b7 (diff)
Increased MaxExtruders to 8 on Duet 3 Mini
Also removed NumDefaultExtruders
Diffstat (limited to 'src/RepRapFirmware.h')
-rw-r--r--src/RepRapFirmware.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/RepRapFirmware.h b/src/RepRapFirmware.h
index 769de336..fbe2f588 100644
--- a/src/RepRapFirmware.h
+++ b/src/RepRapFirmware.h
@@ -455,7 +455,6 @@ constexpr size_t U_AXIS = 3; // The assumed index of the U axis when ex
constexpr size_t NO_AXIS = 0x3F; // A value to represent no axis, must fit in 6 bits (see EndstopHitDetails and RemoteInputHandle) and not be a valid axis number
static_assert(MaxAxesPlusExtruders <= MaxAxes + MaxExtruders);
-static_assert(MaxAxesPlusExtruders >= MinAxes + NumDefaultExtruders);
#if SUPPORT_CAN_EXPANSION
constexpr size_t MaxTotalDrivers = NumDirectDrivers + MaxCanDrivers;