소스 검색

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 년 전
부모
커밋
42f9921482
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      Marlin/src/module/endstops.cpp

+ 2
- 0
Marlin/src/module/endstops.cpp 파일 보기

@@ -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

Loading…
취소
저장