From 18a5ab5c31580f687236c9b0416ac6b4b39ebe1d Mon Sep 17 00:00:00 2001 From: Jakob Hostnik <16599456+hostops@users.noreply.github.com> Date: Tue, 16 Apr 2024 21:05:16 +0200 Subject: [PATCH] fix: ignored z endstop when single z endstop is used --- Marlin/src/pins/ramps/pins_TRIGORILLA_14.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/pins/ramps/pins_TRIGORILLA_14.h b/Marlin/src/pins/ramps/pins_TRIGORILLA_14.h index 0b6ae1d5..83b5e2e5 100644 --- a/Marlin/src/pins/ramps/pins_TRIGORILLA_14.h +++ b/Marlin/src/pins/ramps/pins_TRIGORILLA_14.h @@ -121,7 +121,9 @@ #elif ANY(TRIGORILLA_MAPPING_CHIRON, TRIGORILLA_MAPPING_I3MEGA) // Chiron uses AUX header for Y and Z endstops #define Y_STOP_PIN 42 // AUX (1) - #define Z_STOP_PIN 43 // AUX (2) + #if DISABLED(KNUTWURST_ONE_Z_ENDSTOP) + #define Z_STOP_PIN 43 // AUX (2) + #endif #ifndef Z2_STOP_PIN #define Z2_STOP_PIN 18 // Z- #endif -- 2.25.1