From 102526440045273334ba83072340e355c5a4a130 Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Sat, 14 Aug 2021 11:37:46 +0200 Subject: [PATCH] Config: fix endstop setting The z endstop is not used due to a probe being present. Should it be used however this is the right setting. --- Marlin/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index b1c3c8f512..79a47b9241 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -836,7 +836,7 @@ // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). #define X_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define Y_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. -#define Z_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. +#define Z_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop. #define I_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define J_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define K_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.