1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-12-11 21:14:34 +00:00

🎨 Clean up extra axes

Followup to #24120
This commit is contained in:
Scott Lahteine 2022-07-23 19:14:57 -05:00
parent c6f2be637c
commit a8046d2a95
2 changed files with 0 additions and 50 deletions

View File

@ -811,48 +811,6 @@
#undef MANUAL_K_HOME_POS #undef MANUAL_K_HOME_POS
#endif #endif
#if !HAS_U_AXIS
#undef ENDSTOPPULLUP_UMIN
#undef ENDSTOPPULLUP_UMAX
#undef U_MIN_ENDSTOP_INVERTING
#undef U_MAX_ENDSTOP_INVERTING
#undef U_ENABLE_ON
#undef DISABLE_U
#undef INVERT_U_DIR
#undef U_HOME_DIR
#undef U_MIN_POS
#undef U_MAX_POS
#undef MANUAL_U_HOME_POS
#endif
#if !HAS_V_AXIS
#undef ENDSTOPPULLUP_VMIN
#undef ENDSTOPPULLUP_VMAX
#undef V_MIN_ENDSTOP_INVERTING
#undef V_MAX_ENDSTOP_INVERTING
#undef V_ENABLE_ON
#undef DISABLE_V
#undef INVERT_V_DIR
#undef V_HOME_DIR
#undef V_MIN_POS
#undef V_MAX_POS
#undef MANUAL_V_HOME_POS
#endif
#if !HAS_W_AXIS
#undef ENDSTOPPULLUP_WMIN
#undef ENDSTOPPULLUP_WMAX
#undef W_MIN_ENDSTOP_INVERTING
#undef W_MAX_ENDSTOP_INVERTING
#undef W_ENABLE_ON
#undef DISABLE_W
#undef INVERT_W_DIR
#undef W_HOME_DIR
#undef W_MIN_POS
#undef W_MAX_POS
#undef MANUAL_W_HOME_POS
#endif
#ifdef X2_DRIVER_TYPE #ifdef X2_DRIVER_TYPE
#define HAS_X2_STEPPER 1 #define HAS_X2_STEPPER 1
// Dual X Carriage isn't known yet. TODO: Consider moving it to Configuration.h. // Dual X Carriage isn't known yet. TODO: Consider moving it to Configuration.h.

View File

@ -1883,14 +1883,6 @@ bool Planner::_populate_block(
#if HAS_K_AXIS #if HAS_K_AXIS
" " STR_K ":", target.k, " (", dk, " steps)" " " STR_K ":", target.k, " (", dk, " steps)"
#endif #endif
#if HAS_U_AXIS
" " STR_U ":", target.u, " (", du, " steps)"
#endif
#if HAS_V_AXIS
" " STR_V ":", target.v, " (", dv, " steps)"
#endif
#if HAS_W_AXIS
" " STR_W ":", target.w, " (", dw, " steps)"
#if HAS_EXTRUDERS #if HAS_EXTRUDERS
" E:", target.e, " (", de, " steps)" " E:", target.e, " (", de, " steps)"
#endif #endif