Init print_job_timer in setup() instead of "early" (#9937)

This commit is contained in:
Bob-the-Kuhn
2018-03-04 16:12:30 -06:00
committed by Scott Lahteine
parent beeed580b8
commit 025118da3e
4 changed files with 16 additions and 7 deletions

View File

@ -730,7 +730,11 @@ void setup() {
// Load data from EEPROM if available (or use defaults)
// This also updates variables in the planner, elsewhere
(void)settings.load();
#if ENABLED(PRINTCOUNTER)
print_job_timer.init();
#endif
#if HAS_M206_COMMAND
// Initialize current position based on home_offset
COPY(current_position, home_offset);