Browse Source

Update comments on M125

Scott Lahteine 5 years ago
parent
commit
7cfce20cd3
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      Marlin/src/gcode/feature/pause/M125.cpp

+ 5
- 3
Marlin/src/gcode/feature/pause/M125.cpp View File

37
  *       object. On resume (M24) the head will be moved back and the
37
  *       object. On resume (M24) the head will be moved back and the
38
  *       print will resume.
38
  *       print will resume.
39
  *
39
  *
40
- *       If Marlin is compiled without SD Card support, M125 can be
41
- *       used directly to pause the print and move to park position,
42
- *       resuming with a button click or M108.
40
+ *       When not actively SD printing, M125 simply moves to the park
41
+ *       position and waits, resuming with a button click or M108.
42
+ *       Without PARK_HEAD_ON_PAUSE the M125 command does nothing.
43
  *
43
  *
44
  *    L = override retract length
44
  *    L = override retract length
45
  *    X = override X
45
  *    X = override X
75
   #endif
75
   #endif
76
 
76
 
77
   if (pause_print(retract, park_point)) {
77
   if (pause_print(retract, park_point)) {
78
+    // SD Printing simply pauses, leaving the machine in a ready state,
79
+    // and can be resumed at any time, so don't wait in a loop here.
78
     if (!sd_printing) {
80
     if (!sd_printing) {
79
       wait_for_confirmation();
81
       wait_for_confirmation();
80
       resume_print();
82
       resume_print();

Loading…
Cancel
Save