From 7e62b60c94714e3ca85c0a76e511095c0ddaec20 Mon Sep 17 00:00:00 2001 From: BeowulfNode42 Date: Thu, 25 Sep 2025 18:09:21 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Allow=20CHITU3D=20V6=20override?= =?UTF-8?q?=20of=20Z=5FSTOP=5FPIN=20(#28059)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/pins/stm32f1/pins_CHITU3D_V6.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Marlin/src/pins/stm32f1/pins_CHITU3D_V6.h b/Marlin/src/pins/stm32f1/pins_CHITU3D_V6.h index 18c8e22dff..14e7f3ab23 100644 --- a/Marlin/src/pins/stm32f1/pins_CHITU3D_V6.h +++ b/Marlin/src/pins/stm32f1/pins_CHITU3D_V6.h @@ -27,7 +27,11 @@ #define Z2_STEP_PIN PF5 #define Z2_DIR_PIN PF1 -#define Z_STOP_PIN PA14 +// Some Chitu v6 boards use PA14 and some use PG9. +// The CXY-V6-191017 in early Tronxy X5SA Pro printers apparently use PG9. +#ifndef Z_STOP_PIN + #define Z_STOP_PIN PA14 +#endif #ifndef FIL_RUNOUT2_PIN #define FIL_RUNOUT2_PIN PF13