Browse Source

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

Daniel Callander 6 years ago
parent
commit
155765646e
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      Marlin/src/inc/SanityCheck.h

+ 7
- 0
Marlin/src/inc/SanityCheck.h View File

1010
 #endif
1010
 #endif
1011
 
1011
 
1012
 /**
1012
 /**
1013
+ * Junction deviation is not compatible with kinematic systems.
1014
+ */
1015
+#if ENABLED(JUNCTION_DEVIATION) && IS_KINEMATIC
1016
+  #error "Junction deviation is only compatible with Cartesians."
1017
+#endif
1018
+
1019
+/**
1013
  * Probes
1020
  * Probes
1014
  */
1021
  */
1015
 
1022
 

Loading…
Cancel
Save