Move Stepper::synchronize to Planner (#10713)

Co-Authored-By: ejtagle <ejtagle@hotmail.com>
This commit is contained in:
Scott Lahteine
2018-05-12 01:38:02 -05:00
committed by GitHub
parent f2e3c9896e
commit 306f0f2135
33 changed files with 72 additions and 73 deletions

View File

@ -77,7 +77,7 @@
report_xyz(delta);
#endif
stepper.synchronize();
planner.synchronize();
SERIAL_PROTOCOLPGM("Stepper:");
LOOP_XYZE(i) {
@ -126,6 +126,6 @@ void GcodeSuite::M114() {
}
#endif
stepper.synchronize();
planner.synchronize();
report_current_position();
}