Skip to content

Commit

Permalink
Fixes prusa3d#3262
Browse files Browse the repository at this point in the history
Make sure to call lcd_timeoutToStatus.start() when the SD card is inserted
into the printer after it was removed beforehand.

(cherry picked from commit 6795843)
  • Loading branch information
gudnimg committed Nov 18, 2021
1 parent bb9ba95 commit be79e37
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion Firmware/cardreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,6 @@ void CardReader::presort() {

lcd_update(2);
KEEPALIVE_STATE(NOT_BUSY);
lcd_timeoutToStatus.start();
}

void CardReader::flush_presort() {
Expand Down
1 change: 1 addition & 0 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8939,6 +8939,7 @@ void menu_lcd_lcdupdate_func(void)
LCD_MESSAGERPGM(_T(WELCOME_MSG));
bMain=false; // flag (i.e. 'fake parameter') for 'lcd_sdcard_menu()' function
menu_submenu(lcd_sdcard_menu);
lcd_timeoutToStatus.start();
}
else
{
Expand Down

0 comments on commit be79e37

Please sign in to comment.