Browse Source

Add include selector between char. LCD and GLCD

Dirk Eichel 11 years ago
parent
commit
f3e0e5184d
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/ultralcd.cpp

+ 4
- 0
Marlin/ultralcd.cpp View File

@@ -24,7 +24,11 @@ typedef void (*menuFunc_t)();
24 24
 uint8_t lcd_status_message_level;
25 25
 char lcd_status_message[LCD_WIDTH+1] = WELCOME_MSG;
26 26
 
27
+#ifdef DOGLCD
28
+#include "dogm_lcd_implementation.h"
29
+#else
27 30
 #include "ultralcd_implementation_hitachi_HD44780.h"
31
+#endif
28 32
 
29 33
 /** forward declerations **/
30 34
 /* Different menus */

Loading…
Cancel
Save