Skip to content
Snippets Groups Projects
Commit 14df7530 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Correction for block->mix_steps

Fix #11484
parent 2ecfda80
No related branches found
No related tags found
No related merge requests found
......@@ -1770,13 +1770,7 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
// For a mixing extruder, get a magnified esteps for each
#if ENABLED(MIXING_EXTRUDER)
for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
block->mix_steps[i] = mixing_factor[i] * (
#if ENABLED(LIN_ADVANCE)
esteps
#else
block->step_event_count
#endif
);
block->mix_steps[i] = mixing_factor[i] * esteps;
#endif
#if FAN_COUNT > 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment