Skip to content

Commit

Permalink
fix HOTEND_OFFSET
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndere1 committed Oct 9, 2024
1 parent ec159cd commit bf3bcb8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Marlin/src/inc/Conditionals-1-axes.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,6 @@
#ifndef HOTEND_OFFSET_Z
#define HOTEND_OFFSET_Z { 0 } // Z offsets for each extruder
#endif
#else
#undef HOTEND_OFFSET_X
#undef HOTEND_OFFSET_Y
#undef HOTEND_OFFSET_Z
#endif

/**
Expand All @@ -235,6 +231,12 @@
#endif
#endif

#if !HAS_MULTI_TOOLS
#undef HOTEND_OFFSET_X
#undef HOTEND_OFFSET_Y
#undef HOTEND_OFFSET_Z
#endif

/**
* Number of Linear Axes (e.g., XYZIJKUVW)
* All the logical axes except for the tool (E) axis
Expand Down

0 comments on commit bf3bcb8

Please sign in to comment.