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
This commit is contained in:
		@@ -629,6 +629,8 @@ void Endstops::update() {
 | 
				
			|||||||
        #else
 | 
					        #else
 | 
				
			||||||
          #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
 | 
					          #if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
 | 
				
			||||||
            if (z_probe_enabled) PROCESS_ENDSTOP(Z, MIN);
 | 
					            if (z_probe_enabled) PROCESS_ENDSTOP(Z, MIN);
 | 
				
			||||||
 | 
					          #elif ENABLED(Z_MIN_PROBE_ENDSTOP)
 | 
				
			||||||
 | 
					            if (!z_probe_enabled) PROCESS_ENDSTOP(Z, MIN);
 | 
				
			||||||
          #else
 | 
					          #else
 | 
				
			||||||
            PROCESS_ENDSTOP(Z, MIN);
 | 
					            PROCESS_ENDSTOP(Z, MIN);
 | 
				
			||||||
          #endif
 | 
					          #endif
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user