Browse Source

🐛 Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)

Keith Bennett 3 years ago
parent
commit
a1c4aad147
No account linked to committer's email address
1 changed files with 8 additions and 2 deletions
  1. 8
    2
      Marlin/src/pins/stm32f1/pins_MKS_ROBIN_E3_common.h

+ 8
- 2
Marlin/src/pins/stm32f1/pins_MKS_ROBIN_E3_common.h View File

@@ -54,8 +54,14 @@
54 54
 //
55 55
 #define X_STOP_PIN                          PA12
56 56
 #define Y_STOP_PIN                          PA11
57
-#define Z_MIN_PIN                           PC6
58
-#define Z_MAX_PIN                           PB1
57
+#define Z_STOP_PIN                          PC6
58
+
59
+//
60
+// Z Probe
61
+//
62
+#ifndef Z_MIN_PROBE_PIN
63
+  #define Z_MIN_PROBE_PIN                   PB1
64
+#endif
59 65
 
60 66
 //
61 67
 // Steppers

Loading…
Cancel
Save