🧑‍💻 Stepper::set_directions() => apply_directions()

This commit is contained in:
Scott Lahteine
2023-04-23 00:47:44 -05:00
parent 921591d2b8
commit f0f7ec8882
6 changed files with 10 additions and 10 deletions

View File

@@ -1419,13 +1419,13 @@ float get_move_distance(const xyze_pos_t &diff OPTARG(HAS_ROTATIONAL_AXES, bool
void idex_set_mirrored_mode(const bool mirr) {
idex_mirrored_mode = mirr;
stepper.set_directions();
stepper.apply_directions();
}
void set_duplication_enabled(const bool dupe, const int8_t tool_index/*=-1*/) {
extruder_duplication_enabled = dupe;
if (tool_index >= 0) active_extruder = tool_index;
stepper.set_directions();
stepper.apply_directions();
}
void idex_set_parked(const bool park/*=true*/) {
@@ -1471,7 +1471,7 @@ float get_move_distance(const xyze_pos_t &diff OPTARG(HAS_ROTATIONAL_AXES, bool
line_to_current_position(fr_zfast);
}
}
stepper.set_directions();
stepper.apply_directions();
idex_set_parked(false);
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("idex_set_parked(false)");