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

Fix Touch-MI sanity checks (#14316)

parent 66d51272
Branches
Tags
No related merge requests found
...@@ -1051,9 +1051,9 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS ...@@ -1051,9 +1051,9 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
* Touch-MI probe requirements * Touch-MI probe requirements
*/ */
#if ENABLED(TOUCH_MI_PROBE) #if ENABLED(TOUCH_MI_PROBE)
#if ENABLED(Z_SAFE_HOMING) #if DISABLED(Z_SAFE_HOMING)
#error "TOUCH_MI_PROBE requires Z_SAFE_HOMING." #error "TOUCH_MI_PROBE requires Z_SAFE_HOMING."
#elif ENABLED(TOUCH_MI_RETRACT_Z) #elif !defined(TOUCH_MI_RETRACT_Z)
#error "TOUCH_MI_PROBE requires TOUCH_MI_RETRACT_Z." #error "TOUCH_MI_PROBE requires TOUCH_MI_RETRACT_Z."
#elif defined(Z_AFTER_PROBING) #elif defined(Z_AFTER_PROBING)
#error "TOUCH_MI_PROBE requires Z_AFTER_PROBING to be disabled." #error "TOUCH_MI_PROBE requires Z_AFTER_PROBING to be disabled."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment