MKS Robin Mini Board Support (#14366)

This commit is contained in:
thisiskeithb
2019-06-24 01:42:22 -07:00
committed by Scott Lahteine
parent cf762d2c73
commit a4aa3621c0
7 changed files with 208 additions and 5 deletions

View File

@ -521,7 +521,9 @@ void MarlinUI::status_screen() {
next_filament_display = millis() + 5000UL; // Show status message for 5s
#endif
goto_screen(menu_main);
init_lcd(); // May revive the LCD if static electricity killed it
#if DISABLED(NO_LCD_REINIT)
init_lcd(); // May revive the LCD if static electricity killed it
#endif
return;
}
@ -793,7 +795,9 @@ void MarlinUI::update() {
}
}
init_lcd(); // May revive the LCD if static electricity killed it
#if DISABLED(NO_LCD_REINIT)
init_lcd(); // May revive the LCD if static electricity killed it
#endif
#endif