mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 20:18:52 +00:00
Make prepare_move_to_destination_dualx a full move function
This commit is contained in:
parent
f365448338
commit
1b8b5c4b06
@ -12469,7 +12469,7 @@ void set_current_from_steppers_for_axis(const AxisEnum axis) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
return prepare_move_to_destination_cartesian();
|
||||
}
|
||||
|
||||
#endif // DUAL_X_CARRIAGE
|
||||
@ -12511,7 +12511,7 @@ void prepare_move_to_destination() {
|
||||
#elif IS_KINEMATIC
|
||||
prepare_kinematic_move_to(destination)
|
||||
#elif ENABLED(DUAL_X_CARRIAGE)
|
||||
prepare_move_to_destination_dualx() || prepare_move_to_destination_cartesian()
|
||||
prepare_move_to_destination_dualx()
|
||||
#else
|
||||
prepare_move_to_destination_cartesian()
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user