|
|
|
@ -744,6 +744,14 @@
|
|
|
|
|
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts
|
|
|
|
|
#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Use Junction Deviation instead of traditional Jerk Limiting
|
|
|
|
|
//
|
|
|
|
|
//#define JUNCTION_DEVIATION
|
|
|
|
|
#if ENABLED(JUNCTION_DEVIATION)
|
|
|
|
|
#define JUNCTION_DEVIATION_MM 0.02 // (mm) Distance from real junction edge
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Default Jerk (mm/s)
|
|
|
|
|
* Override with M205 X Y Z E
|
|
|
|
@ -752,19 +760,21 @@
|
|
|
|
|
* When changing speed and direction, if the difference is less than the
|
|
|
|
|
* value set here, it may happen instantaneously.
|
|
|
|
|
*/
|
|
|
|
|
#if ENABLED(X_SpreadCycle) || DISABLED(X_2208)
|
|
|
|
|
#define DEFAULT_XJERK 20.0
|
|
|
|
|
#else
|
|
|
|
|
#define DEFAULT_XJERK 10.0
|
|
|
|
|
#if DISABLED(JUNCTION_DEVIATION)
|
|
|
|
|
#if ENABLED(X_SpreadCycle) || DISABLED(X_2208)
|
|
|
|
|
#define DEFAULT_XJERK 20.0
|
|
|
|
|
#else
|
|
|
|
|
#define DEFAULT_XJERK 10.0
|
|
|
|
|
#endif
|
|
|
|
|
#if ENABLED(Y_SpreadCycle) || DISABLED(Y_2208)
|
|
|
|
|
#define DEFAULT_YJERK 10.0
|
|
|
|
|
#else
|
|
|
|
|
#define DEFAULT_YJERK 5.0
|
|
|
|
|
#endif
|
|
|
|
|
#define DEFAULT_ZJERK 0.4
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if ENABLED(Y_SpreadCycle) || DISABLED(Y_2208)
|
|
|
|
|
#define DEFAULT_YJERK 10.0
|
|
|
|
|
#else
|
|
|
|
|
#define DEFAULT_YJERK 5.0
|
|
|
|
|
#endif
|
|
|
|
|
#define DEFAULT_ZJERK 0.4
|
|
|
|
|
#define DEFAULT_EJERK 5.0
|
|
|
|
|
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* S-Curve Acceleration
|
|
|
|
|