Browse Source
Warn user about useless of individual axis homing and DELTA kinematics
pull/1/head
João Brázio
9 years ago
No known key found for this signature in database
GPG Key ID: F62CFD37DFFDB540
1 changed files with
7 additions and
0 deletions
-
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 |
|
|
|
*/ |
|
|
|