Support for distinct E factors
This commit is contained in:
@ -145,6 +145,9 @@
|
||||
// :[1, 2, 3, 4]
|
||||
#define EXTRUDERS 1
|
||||
|
||||
// Enable if your E steppers or extruder gear ratios are not identical
|
||||
//#define DISTINCT_E_FACTORS
|
||||
|
||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||
//#define SINGLENOZZLE
|
||||
|
||||
@ -472,26 +475,31 @@
|
||||
*
|
||||
* These settings can be reset by M502
|
||||
*
|
||||
* You can set distinct factors for each E stepper, if needed.
|
||||
* If fewer factors are given, the last will apply to the rest.
|
||||
*
|
||||
* Note that if EEPROM is enabled, saved values will override these.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Default Axis Steps Per Unit (steps/mm)
|
||||
* Override with M92
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3]]]
|
||||
*/
|
||||
#define DEFAULT_AXIS_STEPS_PER_UNIT { 134.74, 134.74, 4266.66, 148.7 }
|
||||
|
||||
/**
|
||||
* Default Max Feed Rate (mm/s)
|
||||
* Override with M203
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3]]]
|
||||
*/
|
||||
#define DEFAULT_MAX_FEEDRATE { 160, 160, 10, 10000 }
|
||||
|
||||
/**
|
||||
* Default Max Acceleration (change/s) change = mm/s
|
||||
* (Maximum start speed for accelerated moves)
|
||||
* Override with M201
|
||||
*
|
||||
* Maximum start speed for accelerated moves: { X, Y, Z, E }
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3]]]
|
||||
*/
|
||||
#define DEFAULT_MAX_ACCELERATION { 9000, 9000, 100, 10000 }
|
||||
|
||||
|
@ -145,6 +145,9 @@
|
||||
// :[1, 2, 3, 4]
|
||||
#define EXTRUDERS 2
|
||||
|
||||
// Enable if your E steppers or extruder gear ratios are not identical
|
||||
//#define DISTINCT_E_FACTORS
|
||||
|
||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||
//#define SINGLENOZZLE
|
||||
|
||||
@ -472,26 +475,31 @@
|
||||
*
|
||||
* These settings can be reset by M502
|
||||
*
|
||||
* You can set distinct factors for each E stepper, if needed.
|
||||
* If fewer factors are given, the last will apply to the rest.
|
||||
*
|
||||
* Note that if EEPROM is enabled, saved values will override these.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Default Axis Steps Per Unit (steps/mm)
|
||||
* Override with M92
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3]]]
|
||||
*/
|
||||
#define DEFAULT_AXIS_STEPS_PER_UNIT { 134.74, 134.74, 4266.66, 148.7 }
|
||||
|
||||
/**
|
||||
* Default Max Feed Rate (mm/s)
|
||||
* Override with M203
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3]]]
|
||||
*/
|
||||
#define DEFAULT_MAX_FEEDRATE { 160, 160, 10, 10000 }
|
||||
|
||||
/**
|
||||
* Default Max Acceleration (change/s) change = mm/s
|
||||
* (Maximum start speed for accelerated moves)
|
||||
* Override with M201
|
||||
*
|
||||
* Maximum start speed for accelerated moves: { X, Y, Z, E }
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3]]]
|
||||
*/
|
||||
#define DEFAULT_MAX_ACCELERATION { 9000, 9000, 100, 10000 }
|
||||
|
||||
|
Reference in New Issue
Block a user