Skip to content

Commit 9ef01d4

Browse files
⚡️ E3V2 blank bg for S1 compatibility (MarlinFirmware#23822)
1 parent 7d7439c commit 9ef01d4

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

Marlin/src/lcd/e3v2/creality/dwin_lcd.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ void DWIN_Startup() {
4949
#if DISABLED(SHOW_BOOTSCREEN)
5050
DWIN_Frame_Clear(Color_Bg_Black); // MarlinUI handles the bootscreen so just clear here
5151
#endif
52+
DWIN_JPG_ShowAndCache(3);
5253
DWIN_UpdateLCD();
5354
}
5455

Marlin/src/lcd/e3v2/jyersui/dwin.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -4989,6 +4989,8 @@ void MarlinUI::init_lcd() {
49894989
DWIN_UpdateLCD();
49904990
delay(20);
49914991
}
4992+
4993+
DWIN_JPG_ShowAndCache(3);
49924994
DWIN_JPG_CacheTo1(Language_English);
49934995
CrealityDWIN.Redraw_Screen();
49944996
}

Marlin/src/lcd/e3v2/marlinui/dwin_lcd.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ void DWIN_Startup() {
4545
const bool success = DWIN_Handshake();
4646
if (success) DEBUG_ECHOLNPGM("ok."); else DEBUG_ECHOLNPGM("error.");
4747
DWIN_Frame_SetDir(TERN(DWIN_MARLINUI_LANDSCAPE, 0, 1));
48+
DWIN_JPG_ShowAndCache(3);
4849
DWIN_Frame_Clear(Color_Bg_Black); // MarlinUI handles the bootscreen so just clear here
4950
DWIN_UpdateLCD();
5051
}

Marlin/src/lcd/e3v2/proui/dwin.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1836,6 +1836,7 @@ void DWIN_Startup() {
18361836
DWINUI::onCursorErase = Erase_Menu_Cursor;
18371837
DWINUI::onTitleDraw = Draw_Title;
18381838
DWINUI::onMenuDraw = Draw_Menu;
1839+
DWIN_JPG_ShowAndCache(3);
18391840
HMI_SetLanguage();
18401841
}
18411842

@@ -1937,6 +1938,7 @@ void DWIN_RebootScreen() {
19371938
DWINUI::Draw_CenteredString(Color_White, 220, GET_TEXT_F(MSG_PLEASE_WAIT_REBOOT));
19381939
DWIN_UpdateLCD();
19391940
delay(500);
1941+
DWIN_JPG_ShowAndCache(3);
19401942
}
19411943

19421944
void DWIN_Redraw_screen() {

0 commit comments

Comments
 (0)