Przeglądaj źródła

Ignore Z min endstop with separate Z-probe

To allow for the case where a Z endstop (e.g., hall effect) is higher than the probe trigger point, don't check the Z min endstop during probe moves. See #11134
Scott Lahteine 7 lat temu
rodzic
commit
42f9921482
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2
    0
      Marlin/src/module/endstops.cpp

+ 2
- 0
Marlin/src/module/endstops.cpp Wyświetl plik

@@ -629,6 +629,8 @@ void Endstops::update() {
629 629
         #else
630 630
           #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
631 631
             if (z_probe_enabled) PROCESS_ENDSTOP(Z, MIN);
632
+          #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
633
+            if (!z_probe_enabled) PROCESS_ENDSTOP(Z, MIN);
632 634
           #else
633 635
             PROCESS_ENDSTOP(Z, MIN);
634 636
           #endif

Ładowanie…
Anuluj
Zapisz