Skip to content

Commit

Permalink
Increased max extruders per tool on 6HC and 6XD
Browse files Browse the repository at this point in the history
  • Loading branch information
dc42 committed Apr 22, 2024
1 parent d952c94 commit e6e8fcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Config/Pins_Duet3_MB6HC.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ constexpr size_t MaxExtruders = 20; // The maximum number of extruders
constexpr size_t MaxAxesPlusExtruders = 32; // May be <= MaxAxes + MaxExtruders

constexpr size_t MaxHeatersPerTool = 20; // Increased in 3.4 due to OEM requirement
constexpr size_t MaxExtrudersPerTool = 10; // Increased in 3.4 due to OEM requirement
constexpr size_t MaxExtrudersPerTool = 12; // Increased in 3.5.2 because a user needs 12 on a 6HC

constexpr unsigned int MaxTriggers = 32; // Must be <= 32 because we store a bitmap of pending triggers in a uint32_t

Expand Down
2 changes: 1 addition & 1 deletion src/Config/Pins_Duet3_MB6XD.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ constexpr size_t MaxExtruders = 20; // The maximum number of extruders
constexpr size_t MaxAxesPlusExtruders = 32; // May be <= MaxAxes + MaxExtruders

constexpr size_t MaxHeatersPerTool = 20; // Increased in 3.4 due to OEM requirement
constexpr size_t MaxExtrudersPerTool = 10; // Increased in 3.4 due to OEM requirement
constexpr size_t MaxExtrudersPerTool = 12; // Increased in 3.5.2 because a user needs 12 on a 6HC

constexpr unsigned int MaxTriggers = 32; // Must be <= 32 because we store a bitmap of pending triggers in a uint32_t

Expand Down

0 comments on commit e6e8fcb

Please sign in to comment.