|
@@ -221,20 +221,20 @@
|
221
|
221
|
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
|
222
|
222
|
// to check that the wiring to the thermistor is not broken.
|
223
|
223
|
// Otherwise this would lead to the heater being powered on all the time.
|
224
|
|
-#define HEATER_0_MINTEMP 5
|
225
|
|
-#define HEATER_1_MINTEMP 5
|
226
|
|
-#define HEATER_2_MINTEMP 5
|
227
|
|
-#define HEATER_3_MINTEMP 5
|
228
|
|
-#define BED_MINTEMP 5
|
|
224
|
+#define HEATER_0_MINTEMP 15
|
|
225
|
+//#define HEATER_1_MINTEMP 5
|
|
226
|
+//#define HEATER_2_MINTEMP 5
|
|
227
|
+//#define HEATER_3_MINTEMP 5
|
|
228
|
+//#define BED_MINTEMP 5
|
229
|
229
|
|
230
|
230
|
// When temperature exceeds max temp, your heater will be switched off.
|
231
|
231
|
// This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure!
|
232
|
232
|
// You should use MINTEMP for thermistor short/failure protection.
|
233
|
233
|
#define HEATER_0_MAXTEMP 250
|
234
|
|
-#define HEATER_1_MAXTEMP 275
|
235
|
|
-#define HEATER_2_MAXTEMP 275
|
236
|
|
-#define HEATER_3_MAXTEMP 275
|
237
|
|
-#define BED_MAXTEMP 150
|
|
234
|
+//#define HEATER_1_MAXTEMP 275
|
|
235
|
+//#define HEATER_2_MAXTEMP 275
|
|
236
|
+//#define HEATER_3_MAXTEMP 275
|
|
237
|
+//#define BED_MAXTEMP 150
|
238
|
238
|
|
239
|
239
|
// If you want the M105 heater power reported in watts, define the BED_WATTS, and (shared for all extruders) EXTRUDER_WATTS
|
240
|
240
|
//#define HOTEND_WATTS (12.0*12.0/6.7) // P=U^2/R
|
|
@@ -293,7 +293,7 @@
|
293
|
293
|
// all forms of bed control obey this (PID, bang-bang, bang-bang with hysteresis)
|
294
|
294
|
// setting this to anything other than 255 enables a form of PWM to the bed just like HEATER_BED_DUTY_CYCLE_DIVIDER did,
|
295
|
295
|
// so you shouldn't use it unless you are OK with PWM on your bed. (see the comment on enabling PIDTEMPBED)
|
296
|
|
-#define MAX_BED_POWER 255 // limits duty cycle to bed; 255=full current
|
|
296
|
+//#define MAX_BED_POWER 255 // limits duty cycle to bed; 255=full current
|
297
|
297
|
|
298
|
298
|
#if ENABLED(PIDTEMPBED)
|
299
|
299
|
|
|
@@ -344,7 +344,7 @@
|
344
|
344
|
*/
|
345
|
345
|
|
346
|
346
|
#define THERMAL_PROTECTION_HOTENDS // Enable thermal protection for all extruders
|
347
|
|
-#define THERMAL_PROTECTION_BED // Enable thermal protection for the heated bed
|
|
347
|
+//#define THERMAL_PROTECTION_BED // Enable thermal protection for the heated bed
|
348
|
348
|
|
349
|
349
|
//===========================================================================
|
350
|
350
|
//============================= Mechanical Settings =========================
|
|
@@ -512,7 +512,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
|
512
|
512
|
//
|
513
|
513
|
// For M851 give a range for adjusting the Z probe offset
|
514
|
514
|
//
|
515
|
|
-#define Z_PROBE_OFFSET_RANGE_MIN -5
|
|
515
|
+#define Z_PROBE_OFFSET_RANGE_MIN -2
|
516
|
516
|
#define Z_PROBE_OFFSET_RANGE_MAX 0
|
517
|
517
|
|
518
|
518
|
// For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
|
|
@@ -561,8 +561,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
|
561
|
561
|
#define Y_HOME_DIR -1
|
562
|
562
|
#define Z_HOME_DIR -1
|
563
|
563
|
|
564
|
|
-#define min_software_endstops false // If true, axis won't move to coordinates less than HOME_POS.
|
565
|
|
-#define max_software_endstops false // If true, axis won't move to coordinates greater than the defined lengths below.
|
|
564
|
+#define min_software_endstops true // If true, axis won't move to coordinates less than HOME_POS.
|
|
565
|
+#define max_software_endstops true // If true, axis won't move to coordinates greater than the defined lengths below.
|
566
|
566
|
|
567
|
567
|
// @section machine
|
568
|
568
|
|
|
@@ -715,18 +715,18 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
|
715
|
715
|
|
716
|
716
|
// default settings
|
717
|
717
|
|
718
|
|
-#define DEFAULT_AXIS_STEPS_PER_UNIT {160, 160, 8000, 204.146} // default steps per unit for Ultimaker
|
719
|
|
-#define DEFAULT_MAX_FEEDRATE {200, 200, 3.3, 200} // (mm/sec)
|
720
|
|
-#define DEFAULT_MAX_ACCELERATION {1000, 1000, 100, 3000} // 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.
|
|
718
|
+#define DEFAULT_AXIS_STEPS_PER_UNIT {160, 160, 8000, 203} // default steps per unit for Ultimaker
|
|
719
|
+#define DEFAULT_MAX_FEEDRATE {250, 250, 2, 200} // (mm/sec)
|
|
720
|
+#define DEFAULT_MAX_ACCELERATION {1000, 1000, 20, 1000} // 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.
|
721
|
721
|
|
722
|
722
|
#define DEFAULT_ACCELERATION 1000 // X, Y, Z and E acceleration in mm/s^2 for printing moves
|
723
|
723
|
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration in mm/s^2 for retracts
|
724
|
724
|
#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves
|
725
|
725
|
|
726
|
726
|
// The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
|
727
|
|
-#define DEFAULT_XYJERK 15.0 // (mm/sec)
|
728
|
|
-#define DEFAULT_ZJERK 0.4 // (mm/sec)
|
729
|
|
-#define DEFAULT_EJERK 2.0 // (mm/sec)
|
|
727
|
+#define DEFAULT_XYJERK 10.0 // (mm/sec)
|
|
728
|
+#define DEFAULT_ZJERK 0.4 // (mm/sec)
|
|
729
|
+#define DEFAULT_EJERK 2.0 // (mm/sec)
|
730
|
730
|
|
731
|
731
|
|
732
|
732
|
//=============================================================================
|
|
@@ -809,7 +809,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
|
809
|
809
|
// - Total time printing
|
810
|
810
|
//
|
811
|
811
|
// This information can be viewed by the M78 command.
|
812
|
|
-//#define PRINTCOUNTER
|
|
812
|
+#define PRINTCOUNTER
|
813
|
813
|
|
814
|
814
|
//=============================================================================
|
815
|
815
|
//============================= LCD and SD support ============================
|
|
@@ -889,7 +889,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
|
889
|
889
|
//
|
890
|
890
|
// Use CRC checks and retries on the SD communication.
|
891
|
891
|
//
|
892
|
|
-//#define SD_CHECK_AND_RETRY
|
|
892
|
+#define SD_CHECK_AND_RETRY
|
893
|
893
|
|
894
|
894
|
//
|
895
|
895
|
// ENCODER SETTINGS
|