Skip to content

Commit

Permalink
🐛 Fix Mixing code typos (MarlinFirmware#22697)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot authored and ptoal committed Dec 16, 2021
1 parent a3f229a commit 86a7852
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Marlin/src/module/planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2131,7 +2131,7 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
// Bail if this is a zero-length block
if (block->step_event_count < MIN_STEPS_PER_SEGMENT) return false;

TERN_(MIXING_EXTRUDER, mixer.populate_block(block->b_color))
TERN_(MIXING_EXTRUDER, mixer.populate_block(block->b_color));

TERN_(HAS_CUTTER, block->cutter_power = cutter.power);

Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/module/stepper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2205,7 +2205,7 @@ uint32_t Stepper::block_phase_isr() {
accelerate_until = current_block->accelerate_until << oversampling;
decelerate_after = current_block->decelerate_after << oversampling;

TERN_(MIXING_EXTRUDER, mixer.stepper_setup(current_block->b_color))
TERN_(MIXING_EXTRUDER, mixer.stepper_setup(current_block->b_color));

TERN_(HAS_MULTI_EXTRUDER, stepper_extruder = current_block->extruder);

Expand Down

0 comments on commit 86a7852

Please sign in to comment.