Skip to content
Snippets Groups Projects
Commit 7cfce20c authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Update comments on M125

parent dc4786a5
No related branches found
No related tags found
No related merge requests found
......@@ -37,9 +37,9 @@
* object. On resume (M24) the head will be moved back and the
* print will resume.
*
* If Marlin is compiled without SD Card support, M125 can be
* used directly to pause the print and move to park position,
* resuming with a button click or M108.
* When not actively SD printing, M125 simply moves to the park
* position and waits, resuming with a button click or M108.
* Without PARK_HEAD_ON_PAUSE the M125 command does nothing.
*
* L = override retract length
* X = override X
......@@ -75,6 +75,8 @@ void GcodeSuite::M125() {
#endif
if (pause_print(retract, park_point)) {
// SD Printing simply pauses, leaving the machine in a ready state,
// and can be resumed at any time, so don't wait in a loop here.
if (!sd_printing) {
wait_for_confirmation();
resume_print();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment