|
@@ -809,24 +809,30 @@
|
809
|
809
|
#define INVERT_Z_STEP_PIN false
|
810
|
810
|
#define INVERT_E_STEP_PIN false
|
811
|
811
|
|
812
|
|
-// Default stepper release if idle. Set to 0 to deactivate.
|
813
|
|
-// Steppers will shut down DEFAULT_STEPPER_DEACTIVE_TIME seconds after the last move when DISABLE_INACTIVE_? is true.
|
814
|
|
-// Time can be set by M18 and M84.
|
|
812
|
+/**
|
|
813
|
+ * Idle Stepper Shutdown
|
|
814
|
+ * Set DISABLE_INACTIVE_? 'true' to shut down axis steppers after an idle period.
|
|
815
|
+ * The Deactive Time can be overridden with M18 and M84. Set to 0 for No Timeout.
|
|
816
|
+ */
|
815
|
817
|
#define DEFAULT_STEPPER_DEACTIVE_TIME 120
|
816
|
818
|
#define DISABLE_INACTIVE_X true
|
817
|
819
|
#define DISABLE_INACTIVE_Y true
|
818
|
|
-#define DISABLE_INACTIVE_Z true // Set to false if the nozzle will fall down on your printed part when print has finished.
|
|
820
|
+#define DISABLE_INACTIVE_Z true // Set 'false' if the nozzle could fall onto your printed part!
|
819
|
821
|
#define DISABLE_INACTIVE_E true
|
820
|
822
|
|
821
|
|
-#define DEFAULT_MINIMUMFEEDRATE 0.0 // minimum feedrate
|
822
|
|
-#define DEFAULT_MINTRAVELFEEDRATE 0.0
|
|
823
|
+// If the Nozzle or Bed falls when the Z stepper is disabled, set its resting position here.
|
|
824
|
+//#define Z_AFTER_DEACTIVATE Z_HOME_POS
|
823
|
825
|
|
824
|
826
|
//#define HOME_AFTER_DEACTIVATE // Require rehoming after steppers are deactivated
|
825
|
827
|
|
826
|
|
-// Minimum time that a segment needs to take if the buffer is emptied
|
827
|
|
-#define DEFAULT_MINSEGMENTTIME 20000 // (µs)
|
|
828
|
+// Minimum time that a segment needs to take as the buffer gets emptied
|
|
829
|
+#define DEFAULT_MINSEGMENTTIME 20000 // (µs) Set with M205 B.
|
|
830
|
+
|
|
831
|
+// Default Minimum Feedrates for printing and travel moves
|
|
832
|
+#define DEFAULT_MINIMUMFEEDRATE 0.0 // (mm/s) Minimum feedrate. Set with M205 S.
|
|
833
|
+#define DEFAULT_MINTRAVELFEEDRATE 0.0 // (mm/s) Minimum travel feedrate. Set with M205 T.
|
828
|
834
|
|
829
|
|
-// Slow down the machine if the look ahead buffer is (by default) half full.
|
|
835
|
+// Slow down the machine if the lookahead buffer is (by default) half full.
|
830
|
836
|
// Increase the slowdown divisor for larger buffer sizes.
|
831
|
837
|
#define SLOWDOWN
|
832
|
838
|
#if ENABLED(SLOWDOWN)
|