Below are my settings They look ok to me and the documentation I can find.
Can you advise alternative settings. My printer has been down since I upgraded and I was printing COVID PPE...
and prototypes....
/
* Default Axis Steps Per Unit (steps/mm)
* Override with M92
X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT {400, 400, 4000, 595} //TG12-13-17
/**
* Default Max Feed Rate (mm/s)
* Override with M203
X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_MAX_FEEDRATE { 250, 250, 2, 250 } //TG12-13-17
/
* Default Max Acceleration (change/s) change = mm/s
* (Maximum start speed for accelerated moves)
* Override with M201
X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 5, 1000 } //TG12-13-17
/**
* Default Acceleration (change/s) change = mm/s
* Override with M204
* M204 P Acceleration
M204 R Retract Acceleration
* M204 T Travel Acceleration
/
#define DEFAULT_ACCELERATION 500 // X, Y, Z and E acceleration for printing moves //Enabled 12-30-17
#define DEFAULT_RETRACT_ACCELERATION 500 // E acceleration for retracts //TG1-17-18
#define DEFAULT_TRAVEL_ACCELERATION 300 // X, Y, Z acceleration for travel (non printing) moves //Enabled 12-30-17
/**
* Default Jerk (mm/s)
* Override with M205 X Y Z E
* "Jerk" specifies the minimum speed change that requires acceleration.
* When changing speed and direction, if the difference is less than the
* value set here, it may happen instantaneously.
*/
#define DEFAULT_XJERK 0.40 //10-23-18 was 20
#define DEFAULT_YJERK 0.40 //10-23-18 was 20
#define DEFAULT_ZJERK 0.4
#define DEFAULT_EJERK 0.0 //10-25-18 was 5