Browse Source

Fix remaining time divide-by-zero (#21080)

vanilla_fb_2.0.x
ellensp 3 years ago
committed by GitHub
parent
commit
35e9c131d6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/lcd/marlinui.h

2
Marlin/src/lcd/marlinui.h

@ -248,7 +248,7 @@ public:
static inline uint32_t _calculated_remaining_time() {
const duration_t elapsed = print_job_timer.duration();
const progress_t progress = _get_progress();
return elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress;
return progress ? elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress : 0;
}
#if ENABLED(USE_M73_REMAINING_TIME)
static uint32_t remaining_time;

Loading…
Cancel
Save