Browse Source

Merge pull request #3753 from jbrazio/feature/followup-3740

Warn user about useless of individual axis homing and DELTA kinematics
pull/1/head
Scott Lahteine 8 years ago
parent
commit
596ebccd54
  1. 7
      Marlin/SanityCheck.h

7
Marlin/SanityCheck.h

@ -117,6 +117,13 @@
#error EXTRUDER_RUNOUT_PREVENT currently incompatible with FILAMENTCHANGE.
#endif
/**
* Individual axis homing is useless for DELTAS
*/
#if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
#error Individual axis homing will not work with a DELTA kinematics.
#endif
/**
* Options only for EXTRUDERS > 1
*/

Loading…
Cancel
Save