Skip to content

Commit

Permalink
Add warning when trying to use JD with kinematic systems (MarlinFirmw…
Browse files Browse the repository at this point in the history
  • Loading branch information
Knifa authored and thinkyhead committed Aug 25, 2019
1 parent 7183a58 commit 1557656
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 1557656

Please sign in to comment.