mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-03-05 17:44:48 -07:00
Fix for Motion encapsulation
This commit is contained in:
parent
5aad867224
commit
19d837026f
1 changed files with 2 additions and 2 deletions
|
|
@ -47,9 +47,9 @@ ResonanceGenerator::ResonanceGenerator() {}
|
|||
|
||||
void ResonanceGenerator::start() {
|
||||
gcode.home_all_axes(); // Always home axes first
|
||||
motion.do_blocking_move_to_xy(X_CENTER, Y_CENTER, Z_CLEARANCE_FOR_HOMING);
|
||||
motion.blocking_move_xy(X_CENTER, Y_CENTER, Z_CLEARANCE_FOR_HOMING);
|
||||
|
||||
rt_params.start_pos = current_position;
|
||||
rt_params.start_pos = motion.position;
|
||||
active = true;
|
||||
done = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue