Browse Source

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

Warn user about useless of individual axis homing and DELTA kinematics
Scott Lahteine 9 years ago
parent
commit
596ebccd54
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      Marlin/SanityCheck.h

+ 7
- 0
Marlin/SanityCheck.h View File

118
 #endif
118
 #endif
119
 
119
 
120
 /**
120
 /**
121
+ * Individual axis homing is useless for DELTAS
122
+ */
123
+#if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
124
+  #error Individual axis homing will not work with a DELTA kinematics.
125
+#endif
126
+
127
+/**
121
  * Options only for EXTRUDERS > 1
128
  * Options only for EXTRUDERS > 1
122
  */
129
  */
123
 #if EXTRUDERS > 1
130
 #if EXTRUDERS > 1

Loading…
Cancel
Save