From 78001e33dd7e26cc84e626a15528094c771e6e5b Mon Sep 17 00:00:00 2001 From: George Melikov Date: Sat, 10 Dec 2022 15:48:48 +0300 Subject: [PATCH] invert Z for probes in no-bltouch Without patch printer have inverted Z navigation and cannot level Z axis at all. These changes allows printer to level Z axis appropriately and at least print basic things. --- releases/2.1.1/no-bltouch/Configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/2.1.1/no-bltouch/Configuration.h b/releases/2.1.1/no-bltouch/Configuration.h index 90f5d5a0..d2816de6 100644 --- a/releases/2.1.1/no-bltouch/Configuration.h +++ b/releases/2.1.1/no-bltouch/Configuration.h @@ -1096,7 +1096,7 @@ // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). #define X_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop. #define Y_MIN_ENDSTOP_INVERTING true // 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. @@ -1112,7 +1112,7 @@ #define U_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define V_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define W_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. -#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe. +#define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe. // Enable this feature if all enabled endstop pins are interrupt-capable. // This will remove the need to poll the interrupt pins, saving many CPU cycles.