Browse Source

🩹 Fix safe homing sanity-check (#24462)

Pauli Jokela 3 years ago
parent
commit
abe139192f
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/inc/Conditionals_LCD.h

+ 1
- 1
Marlin/src/inc/Conditionals_LCD.h View File

@@ -1210,7 +1210,7 @@
1210 1210
   #if NONE(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, HAS_DELTA_SENSORLESS_PROBING)
1211 1211
     #define USES_Z_MIN_PROBE_PIN 1
1212 1212
   #endif
1213
-  #if Z_HOME_TO_MIN && (DISABLED(USES_Z_MIN_PROBE_PIN) || USE_PROBE_FOR_Z_HOMING)
1213
+  #if Z_HOME_TO_MIN && (DISABLED(USES_Z_MIN_PROBE_PIN) || ENABLED(USE_PROBE_FOR_Z_HOMING))
1214 1214
     #define HOMING_Z_WITH_PROBE 1
1215 1215
   #endif
1216 1216
   #ifndef Z_PROBE_LOW_POINT

Loading…
Cancel
Save