Browse Source

Add warning when trying to use JD with kinematic systems (#15032)

pull/1/head
Daniel Callander 5 years ago
committed by Scott Lahteine
parent
commit
155765646e
  1. 7
      Marlin/src/inc/SanityCheck.h

7
Marlin/src/inc/SanityCheck.h

@ -1009,6 +1009,13 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
#endif
#endif
/**
* Junction deviation is not compatible with kinematic systems.
*/
#if ENABLED(JUNCTION_DEVIATION) && IS_KINEMATIC
#error "Junction deviation is only compatible with Cartesians."
#endif
/**
* Probes
*/

Loading…
Cancel
Save