소스 검색

Fix lcd_wait_for_homing causing menu to block

As a showcase function for how to do waiting in the lcd menu, this function should be preserved.
Scott Lahteine 8 년 전
부모
커밋
fb3c30e24c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp 파일 보기

@@ -444,7 +444,7 @@ uint16_t max_display_update_time = 0;
444 444
   inline void lcd_wait_for_homing() {
445 445
     no_reentrance = true;
446 446
     while (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) idle();
447
-    no_reentrance = true;
447
+    no_reentrance = false;
448 448
   }
449 449
 
450 450
   void lcd_return_to_status() { lcd_goto_screen(lcd_status_screen); }

Loading…
취소
저장