|
|
|
|
2068
|
// In worst case, only one extruder running, no change is needed.
|
2068
|
// In worst case, only one extruder running, no change is needed.
|
2069
|
// In best case, all extruders run the same amount, we can divide by MIXING_STEPPERS
|
2069
|
// In best case, all extruders run the same amount, we can divide by MIXING_STEPPERS
|
2070
|
float delta_mm_i = 0;
|
2070
|
float delta_mm_i = 0;
|
2071
|
- if (i == E_AXIS && mixer.get_current_v_tool() == MIXER_AUTORETRACT_TOOL)
|
|
|
|
|
2071
|
+ if (i == E_AXIS && mixer.get_current_v_tool() == MIXER_AUTORETRACT_TOOL)
|
2072
|
delta_mm_i = delta_mm[i] / MIXING_STEPPERS;
|
2072
|
delta_mm_i = delta_mm[i] / MIXING_STEPPERS;
|
2073
|
else
|
2073
|
else
|
2074
|
delta_mm_i = delta_mm[i];
|
2074
|
delta_mm_i = delta_mm[i];
|