Skip to content

Commit 80e121b

Browse files
authored
Merge pull request #529 from hostops/fix/ignored-z-endstop
fix: ignored z endstop when single z endstop is used
2 parents 19d8c18 + 18a5ab5 commit 80e121b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Marlin/src/pins/ramps/pins_TRIGORILLA_14.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@
121121
#elif ANY(TRIGORILLA_MAPPING_CHIRON, TRIGORILLA_MAPPING_I3MEGA)
122122
// Chiron uses AUX header for Y and Z endstops
123123
#define Y_STOP_PIN 42 // AUX (1)
124-
#define Z_STOP_PIN 43 // AUX (2)
124+
#if DISABLED(KNUTWURST_ONE_Z_ENDSTOP)
125+
#define Z_STOP_PIN 43 // AUX (2)
126+
#endif
125127
#ifndef Z2_STOP_PIN
126128
#define Z2_STOP_PIN 18 // Z-
127129
#endif

0 commit comments

Comments
 (0)