Browse Source

Fix updated Allen Key pause probe logic (#13723)

Robby Candra 6 years ago
parent
commit
e8dc87a2b7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/probe.cpp

+ 1
- 1
Marlin/src/module/probe.cpp View File

@@ -312,7 +312,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
312 312
   #if ENABLED(PAUSE_BEFORE_DEPLOY_STOW)
313 313
     do {
314 314
       #if ENABLED(PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED)
315
-        if (READ(Z_MIN_PROBE_PIN) == (deploy == bool(Z_MIN_PROBE_ENDSTOP_INVERTING))) break;
315
+        if (deploy == (READ(Z_MIN_PROBE_PIN) == Z_MIN_PROBE_ENDSTOP_INVERTING)) break;
316 316
       #endif
317 317
 
318 318
       BUZZ(100, 659);

Loading…
Cancel
Save