|
@@ -726,11 +726,8 @@ void loop() {
|
726
|
726
|
commands_in_queue--;
|
727
|
727
|
cmd_queue_index_r = (cmd_queue_index_r + 1) % BUFSIZE;
|
728
|
728
|
}
|
729
|
|
- // Check heater every n milliseconds
|
730
|
|
- manage_heater();
|
731
|
|
- manage_inactivity();
|
732
|
729
|
checkHitEndstops();
|
733
|
|
- lcd_update();
|
|
730
|
+ idle();
|
734
|
731
|
}
|
735
|
732
|
|
736
|
733
|
void gcode_line_error(const char *err, bool doFlush=true) {
|
|
@@ -1998,11 +1995,7 @@ inline void gcode_G4() {
|
1998
|
1995
|
|
1999
|
1996
|
if (!lcd_hasstatus()) LCD_MESSAGEPGM(MSG_DWELL);
|
2000
|
1997
|
|
2001
|
|
- while (millis() < codenum) {
|
2002
|
|
- manage_heater();
|
2003
|
|
- manage_inactivity();
|
2004
|
|
- lcd_update();
|
2005
|
|
- }
|
|
1998
|
+ while (millis() < codenum) idle();
|
2006
|
1999
|
}
|
2007
|
2000
|
|
2008
|
2001
|
#ifdef FWRETRACT
|
|
@@ -2682,9 +2675,7 @@ inline void gcode_G28() {
|
2682
|
2675
|
|
2683
|
2676
|
probePointCounter++;
|
2684
|
2677
|
|
2685
|
|
- manage_heater();
|
2686
|
|
- manage_inactivity();
|
2687
|
|
- lcd_update();
|
|
2678
|
+ idle();
|
2688
|
2679
|
|
2689
|
2680
|
} //xProbe
|
2690
|
2681
|
} //yProbe
|
|
@@ -2885,21 +2876,13 @@ inline void gcode_G92() {
|
2885
|
2876
|
st_synchronize();
|
2886
|
2877
|
refresh_cmd_timeout();
|
2887
|
2878
|
if (codenum > 0) {
|
2888
|
|
- codenum += previous_cmd_ms; // keep track of when we started waiting
|
2889
|
|
- while(millis() < codenum && !lcd_clicked()) {
|
2890
|
|
- manage_heater();
|
2891
|
|
- manage_inactivity();
|
2892
|
|
- lcd_update();
|
2893
|
|
- }
|
|
2879
|
+ codenum += previous_cmd_ms; // wait until this time for a click
|
|
2880
|
+ while (millis() < codenum && !lcd_clicked()) idle();
|
2894
|
2881
|
lcd_ignore_click(false);
|
2895
|
2882
|
}
|
2896
|
2883
|
else {
|
2897
|
2884
|
if (!lcd_detected()) return;
|
2898
|
|
- while (!lcd_clicked()) {
|
2899
|
|
- manage_heater();
|
2900
|
|
- manage_inactivity();
|
2901
|
|
- lcd_update();
|
2902
|
|
- }
|
|
2885
|
+ while (!lcd_clicked()) idle();
|
2903
|
2886
|
}
|
2904
|
2887
|
if (IS_SD_PRINTING)
|
2905
|
2888
|
LCD_MESSAGEPGM(MSG_RESUMING);
|
|
@@ -3522,9 +3505,9 @@ inline void gcode_M109() {
|
3522
|
3505
|
#endif
|
3523
|
3506
|
temp_ms = millis();
|
3524
|
3507
|
}
|
3525
|
|
- manage_heater();
|
3526
|
|
- manage_inactivity();
|
3527
|
|
- lcd_update();
|
|
3508
|
+
|
|
3509
|
+ idle();
|
|
3510
|
+
|
3528
|
3511
|
#ifdef TEMP_RESIDENCY_TIME
|
3529
|
3512
|
// start/restart the TEMP_RESIDENCY_TIME timer whenever we reach target temp for the first time
|
3530
|
3513
|
// or when current temp falls outside the hysteresis after target temp was reached
|
|
@@ -3572,9 +3555,7 @@ inline void gcode_M109() {
|
3572
|
3555
|
SERIAL_PROTOCOL_F(degBed(), 1);
|
3573
|
3556
|
SERIAL_EOL;
|
3574
|
3557
|
}
|
3575
|
|
- manage_heater();
|
3576
|
|
- manage_inactivity();
|
3577
|
|
- lcd_update();
|
|
3558
|
+ idle();
|
3578
|
3559
|
}
|
3579
|
3560
|
LCD_MESSAGEPGM(MSG_BED_DONE);
|
3580
|
3561
|
refresh_cmd_timeout();
|
|
@@ -4253,11 +4234,7 @@ inline void gcode_M226() {
|
4253
|
4234
|
break;
|
4254
|
4235
|
}
|
4255
|
4236
|
|
4256
|
|
- while(digitalRead(pin_number) != target) {
|
4257
|
|
- manage_heater();
|
4258
|
|
- manage_inactivity();
|
4259
|
|
- lcd_update();
|
4260
|
|
- }
|
|
4237
|
+ while (digitalRead(pin_number) != target) idle();
|
4261
|
4238
|
|
4262
|
4239
|
} // pin_number > -1
|
4263
|
4240
|
} // pin_state -1 0 1
|
|
@@ -6243,6 +6220,15 @@ void disable_all_steppers() {
|
6243
|
6220
|
}
|
6244
|
6221
|
|
6245
|
6222
|
/**
|
|
6223
|
+ * Standard idle routine keeps the machine alive
|
|
6224
|
+ */
|
|
6225
|
+void idle() {
|
|
6226
|
+ manage_heater();
|
|
6227
|
+ manage_inactivity();
|
|
6228
|
+ lcd_update();
|
|
6229
|
+}
|
|
6230
|
+
|
|
6231
|
+/**
|
6246
|
6232
|
* Manage several activities:
|
6247
|
6233
|
* - Check for Filament Runout
|
6248
|
6234
|
* - Keep the command buffer full
|