|
@@ -90,6 +90,9 @@
|
90
|
90
|
|
91
|
91
|
#define PIDTEMP
|
92
|
92
|
#ifdef PIDTEMP
|
|
93
|
+ #if MOTHERBOARD == 62
|
|
94
|
+ #error Sanguinololu does not support PID, sorry. Please disable it.
|
|
95
|
+ #endif
|
93
|
96
|
//#define PID_DEBUG // Sends debug data to the serial port.
|
94
|
97
|
//#define PID_OPENLOOP 1 // Puts PID in open loop. M104 sets the output power in %
|
95
|
98
|
|
|
@@ -195,7 +198,6 @@ const bool ENDSTOPS_INVERTING = true; // set to true to invert the logic of the
|
195
|
198
|
|
196
|
199
|
//// MOVEMENT SETTINGS
|
197
|
200
|
#define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
|
198
|
|
-//note: on bernhards ultimaker 200 200 12 are working well.
|
199
|
201
|
#define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0} // set the homing speeds (mm/min)
|
200
|
202
|
|
201
|
203
|
#define AXIS_RELATIVE_MODES {false, false, false, false}
|
|
@@ -205,7 +207,7 @@ const bool ENDSTOPS_INVERTING = true; // set to true to invert the logic of the
|
205
|
207
|
// default settings
|
206
|
208
|
|
207
|
209
|
#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,200*8/3,760*1.1} // default steps per unit for ultimaker
|
208
|
|
-//#define DEFAULT_AXIS_STEPS_PER_UNIT {40, 40, 3333.92, 67}
|
|
210
|
+//#define DEFAULT_AXIS_STEPS_PER_UNIT {40, 40, 3333.92, 67} //sells mendel with v9 extruder
|
209
|
211
|
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 200000} // (mm/sec)
|
210
|
212
|
#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.
|
211
|
213
|
|
|
@@ -239,7 +241,8 @@ const bool ENDSTOPS_INVERTING = true; // set to true to invert the logic of the
|
239
|
241
|
#define EEPROM_CHITCHAT
|
240
|
242
|
|
241
|
243
|
|
242
|
|
-// The watchdog waits for the watchperiod in milliseconds whenever an M104 or M109 increases the target temperature
|
|
244
|
+// The hardware watchdog should halt the Microcontroller, in case the firmware gets stuck somewhere. However:
|
|
245
|
+// the Watchdog is not working well, so please only enable this for testing
|
243
|
246
|
// this enables the watchdog interrupt.
|
244
|
247
|
//#define USE_WATCHDOG
|
245
|
248
|
//#ifdef USE_WATCHDOG
|
|
@@ -272,7 +275,7 @@ const bool ENDSTOPS_INVERTING = true; // set to true to invert the logic of the
|
272
|
275
|
//#define ULTRA_LCD //general lcd support, also 16x2
|
273
|
276
|
//#define SDSUPPORT // Enable SD Card Support in Hardware Console
|
274
|
277
|
|
275
|
|
-#define ULTIPANEL
|
|
278
|
+//#define ULTIPANEL
|
276
|
279
|
#ifdef ULTIPANEL
|
277
|
280
|
//#define NEWPANEL //enable this if you have a click-encoder panel
|
278
|
281
|
#define SDSUPPORT
|
|
@@ -295,8 +298,13 @@ const bool ENDSTOPS_INVERTING = true; // set to true to invert the logic of the
|
295
|
298
|
#define N_ARC_CORRECTION 25
|
296
|
299
|
|
297
|
300
|
|
298
|
|
-//automatic temperature: just for testing, this is very dangerous, keep disabled!
|
299
|
|
-// not working yet.
|
|
301
|
+//automatic temperature: The hot end target temperature is calculated by all the buffered lines of gcode.
|
|
302
|
+//The maximum buffered steps/sec of the extruder motor are called "se".
|
|
303
|
+//You enter the autotemp mode by a M109 S<mintemp> T<maxtemp> F<factor>
|
|
304
|
+// the target temperature is set to mintemp+factor*se[steps/sec] and limited by mintemp and maxtemp
|
|
305
|
+// you exit the value by any M109 without F*
|
|
306
|
+// Also, if the temperature is set to a value <mintemp, it is not changed by autotemp.
|
|
307
|
+// on an ultimaker, some initial testing worked with M109 S215 T260 F0.1 in the start.gcode
|
300
|
308
|
//#define AUTOTEMP
|
301
|
309
|
#ifdef AUTOTEMP
|
302
|
310
|
#define AUTOTEMP_OLDWEIGHT 0.98
|