|
@@ -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)");
|