Browse Source

LCD conditionals followup (#19766)

vanilla_fb_2.0.x
Jason Smith 4 years ago
committed by GitHub
parent
commit
050ba0e0a0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Marlin/src/inc/Conditionals_post.h

4
Marlin/src/inc/Conditionals_post.h

@ -2614,14 +2614,14 @@
#if HAS_MARLINUI_U8GLIB
#define LCD_WIDTH 21
#else
#define LCD_WIDTH TERN(ULTIPANEL, 20, 16)
#define LCD_WIDTH TERN(IS_ULTIPANEL, 20, 16)
#endif
#endif
#ifndef LCD_HEIGHT
#if HAS_MARLINUI_U8GLIB
#define LCD_HEIGHT 5
#else
#define LCD_HEIGHT TERN(ULTIPANEL, 4, 2)
#define LCD_HEIGHT TERN(IS_ULTIPANEL, 4, 2)
#endif
#endif
#endif

Loading…
Cancel
Save