♻️ No ui.reinit_lcd on any ExtUI (#23722)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
parent
172cd2eefb
commit
7da28768f7
@ -459,8 +459,8 @@
|
||||
|
||||
#endif
|
||||
|
||||
#if ANY(HAS_GRAPHICAL_TFT, LCD_USE_DMA_FSMC, HAS_FSMC_GRAPHICAL_TFT, HAS_SPI_GRAPHICAL_TFT, IS_DWIN_MARLINUI) || !PIN_EXISTS(SD_DETECT)
|
||||
#define NO_LCD_REINIT 1 // Suppress LCD re-initialization
|
||||
#if PIN_EXISTS(SD_DETECT) && NONE(HAS_GRAPHICAL_TFT, LCD_USE_DMA_FSMC, HAS_FSMC_GRAPHICAL_TFT, HAS_SPI_GRAPHICAL_TFT, IS_DWIN_MARLINUI, EXTENSIBLE_UI)
|
||||
#define REINIT_NOISY_LCD 1 // Have the LCD re-init on SD insertion
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -625,7 +625,7 @@ void MarlinUI::init() {
|
||||
next_filament_display = millis() + 5000UL; // Show status message for 5s
|
||||
#endif
|
||||
goto_screen(menu_main);
|
||||
IF_DISABLED(NO_LCD_REINIT, init_lcd()); // May revive the LCD if static electricity killed it
|
||||
reinit_lcd(); // Revive a noisy shared SPI LCD
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1697,9 +1697,7 @@ void MarlinUI::init() {
|
||||
}
|
||||
}
|
||||
|
||||
#if PIN_EXISTS(SD_DETECT) && DISABLED(NO_LCD_REINIT)
|
||||
init_lcd(); // Revive a noisy shared SPI LCD
|
||||
#endif
|
||||
reinit_lcd(); // Revive a noisy shared SPI LCD
|
||||
|
||||
refresh();
|
||||
|
||||
|
@ -209,6 +209,8 @@ public:
|
||||
static void init_lcd() {}
|
||||
#endif
|
||||
|
||||
static void reinit_lcd() { TERN_(REINIT_NOISY_LCD, init_lcd()); }
|
||||
|
||||
#if HAS_WIRED_LCD
|
||||
static bool detected();
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user