| 358 | } |
| 359 | |
| 360 | void startOrResumeJob() { |
| 361 | if (!printingIsPaused()) { |
| 362 | TERN_(GCODE_REPEAT_MARKERS, repeat.reset()); |
| 363 | TERN_(CANCEL_OBJECTS, cancelable.reset()); |
| 364 | TERN_(LCD_SHOW_E_TOTAL, e_move_accumulator = 0); |
| 365 | TERN_(SET_REMAINING_TIME, ui.reset_remaining_time()); |
| 366 | TERN_(HAS_PRUSA_MMU3, MMU3::operation_statistics.reset_per_print_stats()); |
| 367 | } |
| 368 | print_job_timer.start(); |
| 369 | } |
| 370 | |
| 371 | #if HAS_MEDIA |
| 372 |
no test coverage detected