cbaugher
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
Marlin/src/module/tool_change.cpp
|
@ -1132,7 +1132,8 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) { |
|
|
#if ENABLED(TOOLCHANGE_PARK) |
|
|
#if ENABLED(TOOLCHANGE_PARK) |
|
|
if (toolchange_settings.enable_park) do_blocking_move_to_xy_z(destination, destination.z, MMM_TO_MMS(TOOLCHANGE_PARK_XY_FEEDRATE)); |
|
|
if (toolchange_settings.enable_park) do_blocking_move_to_xy_z(destination, destination.z, MMM_TO_MMS(TOOLCHANGE_PARK_XY_FEEDRATE)); |
|
|
#else |
|
|
#else |
|
|
do_blocking_move_to_xy(destination); |
|
|
do_blocking_move_to_xy(destination, planner.settings.max_feedrate_mm_s[X_AXIS]); |
|
|
|
|
|
do_blocking_move_to_z(destination, planner.settings.max_feedrate_mm_s[Z_AXIS]); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
#endif |
|
|
#endif |
|
|