Browse Source

Swap Trigorilla Pro Z_MIN / MAX endstop pins (#21095)

ellensp 4 years ago
parent
commit
c076a7f7a2
No account linked to committer's email address
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      Marlin/src/pins/stm32f1/pins_TRIGORILLA_PRO.h

+ 6
- 2
Marlin/src/pins/stm32f1/pins_TRIGORILLA_PRO.h View File

@@ -58,8 +58,12 @@
58 58
 //
59 59
 #define X_STOP_PIN                          PG10
60 60
 #define Y_STOP_PIN                          PA12
61
-#define Z_MAX_PIN                           PA14
62
-#define Z_MIN_PIN                           PA13
61
+#ifndef Z_MIN_PIN
62
+  #define Z_MIN_PIN                         PA14
63
+#endif
64
+#ifndef Z_MAX_PIN
65
+  #define Z_MAX_PIN                         PA13
66
+#endif
63 67
 
64 68
 //
65 69
 // Steppers

Loading…
Cancel
Save