|
|
@ -709,6 +709,14 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley |
|
|
|
#define DEFAULT_RETRACT_ACCELERATION 1000 // E acceleration for retracts
|
|
|
|
#define DEFAULT_TRAVEL_ACCELERATION 1000 // 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 |
|
|
@ -717,10 +725,13 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley |
|
|
|
* When changing speed and direction, if the difference is less than the |
|
|
|
* value set here, it may happen instantaneously. |
|
|
|
*/ |
|
|
|
#if DISABLED(JUNCTION_DEVIATION) |
|
|
|
#define DEFAULT_XJERK 10.0 |
|
|
|
#define DEFAULT_YJERK 10.0 |
|
|
|
#define DEFAULT_ZJERK 0.3 |
|
|
|
#define DEFAULT_EJERK 5.0 |
|
|
|
#endif |
|
|
|
|
|
|
|
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
|
|
|
|
|
|
|
|
/**
|
|
|
|
* S-Curve Acceleration |
|
|
|