NOZZLE_PARK_FEATURE - X/Y only axis move (#17697)

This commit is contained in:
studiodyne
2020-04-25 17:42:34 +02:00
committed by GitHub
parent d2a5d51f69
commit 58ac9f257c
2 changed files with 7 additions and 1 deletions

View File

@ -188,7 +188,11 @@ Nozzle nozzle;
} break;
}
do_blocking_move_to_xy(park, fr_xy);
do_blocking_move_to_xy(
TERN(NOZZLE_PARK_Y_ONLY, current_position, park).x,
TERN(NOZZLE_PARK_X_ONLY, current_position, park).y,
fr_xy
);
report_current_position();
}