|
@@ -48,6 +48,13 @@
|
48
|
48
|
#define Z_MAX_PIN 32
|
49
|
49
|
|
50
|
50
|
//
|
|
51
|
+// Z Probe (when not Z_MIN_PIN)
|
|
52
|
+//
|
|
53
|
+#ifndef Z_MIN_PROBE_PIN
|
|
54
|
+ #define Z_MIN_PROBE_PIN 32
|
|
55
|
+#endif
|
|
56
|
+
|
|
57
|
+//
|
51
|
58
|
// Runout Sensor
|
52
|
59
|
//
|
53
|
60
|
#ifndef FIL_RUNOUT_PIN
|
|
@@ -64,13 +71,6 @@
|
64
|
71
|
#define POWER_LOSS_STATE LOW
|
65
|
72
|
|
66
|
73
|
//
|
67
|
|
-// Z Probe (when not Z_MIN_PIN)
|
68
|
|
-//
|
69
|
|
-#ifndef Z_MIN_PROBE_PIN
|
70
|
|
- #define Z_MIN_PROBE_PIN 32
|
71
|
|
-#endif
|
72
|
|
-
|
73
|
|
-//
|
74
|
74
|
// Steppers
|
75
|
75
|
//
|
76
|
76
|
#define X_STEP_PIN 37
|
|
@@ -109,9 +109,8 @@
|
109
|
109
|
#define HEATER_2_PIN 1
|
110
|
110
|
#define HEATER_BED_PIN 4
|
111
|
111
|
#define FAN_PIN 9
|
112
|
|
-//#define FAN1_PIN 8
|
113
|
|
-//#define FAN2_PIN 7
|
114
|
|
-
|
|
112
|
+//#define FAN1_PIN 8
|
|
113
|
+//#define FAN2_PIN 7
|
115
|
114
|
|
116
|
115
|
//
|
117
|
116
|
// Misc. Functions
|
|
@@ -120,11 +119,10 @@
|
120
|
119
|
#define SDSS 53
|
121
|
120
|
#define LED_PIN 6
|
122
|
121
|
#define PS_ON_PIN 12
|
123
|
|
-#define SUICIDE_PIN 54 //PIN that has to be turned on right after start, to keep power flowing.
|
|
122
|
+#define SUICIDE_PIN 54 // This pin must be enabled at boot to keep power flowing
|
124
|
123
|
|
125
|
124
|
#ifndef CASE_LIGHT_PIN
|
126
|
|
- //#define CASE_LIGHT_PIN 21
|
127
|
|
- #define CASE_LIGHT_PIN 6
|
|
125
|
+ #define CASE_LIGHT_PIN 6 // 21
|
128
|
126
|
#endif
|
129
|
127
|
|
130
|
128
|
//
|