From 69e35e913dfd3948f78854bcd40e5f00da1d1090 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 d02a8cb465..ebfa499c89 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -821,7 +821,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.