Browse Source

Print startup message after print statistics are loaded (#15664)

Roman Moravčík 5 years ago
parent
commit
e690471739
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/Marlin.cpp

+ 2
- 2
Marlin/src/Marlin.cpp View File

@@ -918,8 +918,6 @@ void setup() {
918 918
   #endif
919 919
 
920 920
   ui.init();
921
-  ui.reset_status();
922
-
923 921
   #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
924 922
     ui.show_bootscreen();
925 923
   #endif
@@ -948,6 +946,8 @@ void setup() {
948 946
 
949 947
   print_job_timer.init();   // Initial setup of print job timer
950 948
 
949
+  ui.reset_status();        // Print startup message after print statistics are loaded
950
+
951 951
   endstops.init();          // Init endstops and pullups
952 952
 
953 953
   stepper.init();           // Init stepper. This enables interrupts!

Loading…
Cancel
Save