Skip to content
Snippets Groups Projects
Commit d6c50671 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Sanitycheck: Z_SAFE_HOMING points are reachable

parent a6203366
Branches
Tags
No related merge requests found
......@@ -359,6 +359,17 @@
#endif
/**
* Make sure Z_SAFE_HOMING point is reachable
*/
#if ENABLED(Z_SAFE_HOMING)
#if Z_SAFE_HOMING_X_POINT < MIN_PROBE_X || Z_SAFE_HOMING_X_POINT > MAX_PROBE_X
#error "The given Z_SAFE_HOMING_X_POINT can't be reached by the Z probe."
#elif Z_SAFE_HOMING_Y_POINT < MIN_PROBE_Y || Z_SAFE_HOMING_Y_POINT > MAX_PROBE_Y
#error "The given Z_SAFE_HOMING_Y_POINT can't be reached by the Z probe."
#endif
#endif // Z_SAFE_HOMING
/**
* Auto Bed Leveling
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment