Selaa lähdekoodia
Warn user about useless of individual axis homing and DELTA kinematics
João Brázio
9 vuotta sitten
vanhempi
commit
d7522152e1
No account linked to committer's email address
|
@@ -118,6 +118,13 @@
|
118
|
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
|
128
|
* Options only for EXTRUDERS > 1
|
122
|
129
|
*/
|
123
|
130
|
#if EXTRUDERS > 1
|