|
@@ -23,7 +23,7 @@
|
23
|
23
|
// Ultimaker = 7,
|
24
|
24
|
// Teensylu = 8,
|
25
|
25
|
// Gen3+ =9
|
26
|
|
-#define MOTHERBOARD 7
|
|
26
|
+#define MOTHERBOARD 33
|
27
|
27
|
|
28
|
28
|
//===========================================================================
|
29
|
29
|
//=============================Thermal Settings ============================
|
|
@@ -41,13 +41,13 @@
|
41
|
41
|
// 6 is EPCOS 100k
|
42
|
42
|
// 7 is 100k Honeywell thermistor 135-104LAG-J01
|
43
|
43
|
|
44
|
|
-#define TEMP_SENSOR_0 -1
|
|
44
|
+#define TEMP_SENSOR_0 1
|
45
|
45
|
#define TEMP_SENSOR_1 0
|
46
|
46
|
#define TEMP_SENSOR_2 0
|
47
|
|
-#define TEMP_SENSOR_BED 0
|
|
47
|
+#define TEMP_SENSOR_BED 1
|
48
|
48
|
|
49
|
49
|
// Actual temperature must be close to target for this long before M109 returns success
|
50
|
|
-#define TEMP_RESIDENCY_TIME 30 // (seconds)
|
|
50
|
+#define TEMP_RESIDENCY_TIME 10 // 30 // (seconds) 30 seconds was too long
|
51
|
51
|
#define TEMP_HYSTERESIS 3 // (C°) range of +/- temperatures considered "close" to the target one
|
52
|
52
|
|
53
|
53
|
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
|
|
@@ -97,7 +97,7 @@
|
97
|
97
|
//this prevents dangerous Extruder moves, i.e. if the temperature is under the limit
|
98
|
98
|
//can be software-disabled for whatever purposes by
|
99
|
99
|
#define PREVENT_DANGEROUS_EXTRUDE
|
100
|
|
-#define EXTRUDE_MINTEMP 190
|
|
100
|
+#define EXTRUDE_MINTEMP 170 // 190 // Lowered a bit as I want to print PLA
|
101
|
101
|
#define EXTRUDE_MAXLENGTH (X_MAX_LENGTH+Y_MAX_LENGTH) //prevent extrusion of very large distances.
|
102
|
102
|
|
103
|
103
|
//===========================================================================
|
|
@@ -108,9 +108,9 @@
|
108
|
108
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
109
|
109
|
|
110
|
110
|
// The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins.
|
111
|
|
-const bool X_ENDSTOPS_INVERTING = true; // set to true to invert the logic of the endstops.
|
112
|
|
-const bool Y_ENDSTOPS_INVERTING = true; // set to true to invert the logic of the endstops.
|
113
|
|
-const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of the endstops.
|
|
111
|
+const bool X_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops.
|
|
112
|
+const bool Y_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops.
|
|
113
|
+const bool Z_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops.
|
114
|
114
|
|
115
|
115
|
// For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
|
116
|
116
|
#define X_ENABLE_ON 0
|
|
@@ -124,8 +124,8 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
124
|
124
|
#define DISABLE_Z false
|
125
|
125
|
#define DISABLE_E false // For all extruders
|
126
|
126
|
|
127
|
|
-#define INVERT_X_DIR true // for Mendel set to false, for Orca set to true
|
128
|
|
-#define INVERT_Y_DIR false // for Mendel set to true, for Orca set to false
|
|
127
|
+#define INVERT_X_DIR false // for Mendel set to false, for Orca set to true
|
|
128
|
+#define INVERT_Y_DIR true // for Mendel set to true, for Orca set to false
|
129
|
129
|
#define INVERT_Z_DIR true // for Mendel set to false, for Orca set to true
|
130
|
130
|
#define INVERT_E0_DIR false // for direct drive extruder v9 set to true, for geared extruder set to false
|
131
|
131
|
#define INVERT_E1_DIR false // for direct drive extruder v9 set to true, for geared extruder set to false
|
|
@@ -139,22 +139,22 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
139
|
139
|
|
140
|
140
|
#define min_software_endstops true //If true, axis won't move to coordinates less than zero.
|
141
|
141
|
#define max_software_endstops true //If true, axis won't move to coordinates greater than the defined lengths below.
|
142
|
|
-#define X_MAX_LENGTH 205
|
143
|
|
-#define Y_MAX_LENGTH 205
|
144
|
|
-#define Z_MAX_LENGTH 200
|
|
142
|
+#define X_MAX_LENGTH 175
|
|
143
|
+#define Y_MAX_LENGTH 185
|
|
144
|
+#define Z_MAX_LENGTH 90
|
145
|
145
|
|
146
|
146
|
//// MOVEMENT SETTINGS
|
147
|
147
|
#define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
|
148
|
|
-#define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0} // set the homing speeds (mm/min)
|
|
148
|
+#define HOMING_FEEDRATE {1500, 1500, 80, 0} // {50*60, 50*60, 4*60, 0} // set the homing speeds (mm/min)
|
149
|
149
|
|
150
|
150
|
// default settings
|
151
|
151
|
|
152
|
|
-#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,200*8/3,760*1.1} // default steps per unit for ultimaker
|
|
152
|
+#define DEFAULT_AXIS_STEPS_PER_UNIT {80, 80, 2560,640.15} // {78.7402,78.7402,200*8/3,760*1.1} // default steps per unit for metric prusa
|
153
|
153
|
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 45} // (mm/sec)
|
154
|
154
|
#define DEFAULT_MAX_ACCELERATION {9000,9000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
|
155
|
155
|
|
156
|
|
-#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E max acceleration in mm/s^2 for printing moves
|
157
|
|
-#define DEFAULT_RETRACT_ACCELERATION 3000 // X, Y, Z and E max acceleration in mm/s^2 for r retracts
|
|
156
|
+#define DEFAULT_ACCELERATION 1500 // 3000 // X, Y, Z and E max acceleration in mm/s^2 for printing moves
|
|
157
|
+#define DEFAULT_RETRACT_ACCELERATION 1500 // 3000 // X, Y, Z and E max acceleration in mm/s^2 for r retracts
|
158
|
158
|
|
159
|
159
|
//
|
160
|
160
|
#define DEFAULT_XYJERK 20.0 // (mm/sec)
|
|
@@ -179,9 +179,9 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
179
|
179
|
//#define ULTRA_LCD //general lcd support, also 16x2
|
180
|
180
|
#define SDSUPPORT // Enable SD Card Support in Hardware Console
|
181
|
181
|
|
182
|
|
-//#define ULTIPANEL
|
|
182
|
+#define ULTIPANEL
|
183
|
183
|
#ifdef ULTIPANEL
|
184
|
|
- //#define NEWPANEL //enable this if you have a click-encoder panel
|
|
184
|
+ #define NEWPANEL //enable this if you have a click-encoder panel
|
185
|
185
|
#define SDSUPPORT
|
186
|
186
|
#define ULTRA_LCD
|
187
|
187
|
#define LCD_WIDTH 20
|