Browse Source

Fix high LCD status screen update frequency (PR#2655)

Richard Wackerbarth 9 years ago
parent
commit
03f0edb57e
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/ultralcd.cpp

+ 2
- 1
Marlin/ultralcd.cpp View File

@@ -1696,7 +1696,8 @@ void lcd_update() {
1696 1696
         } while( u8g.nextPage() );
1697 1697
       }
1698 1698
     #else
1699
-      (*currentMenu)();
1699
+      if (lcdDrawUpdate)
1700
+        (*currentMenu)();
1700 1701
     #endif
1701 1702
 
1702 1703
     #if ENABLED(LCD_HAS_STATUS_INDICATORS)

Loading…
Cancel
Save