Browse Source

Disable SDSUPPORT by default

As noted in #133 you can’t disable `SDSUPPORT` with `MAKRPANEL`,
`PANEL_ONE`, `MINIPANEL`, or `ULTIPANEL`. This patch makes it possible
to disable `SDSUPPORT` on these controllers and then disables it by
default.

Users of these controllers will now need to enable `SDSUPPORT` in their
configurations as others currently do.
Scott Lahteine 8 years ago
parent
commit
7c7a4051fe
1 changed files with 0 additions and 4 deletions
  1. 0
    4
      Marlin/Conditionals.h

+ 0
- 4
Marlin/Conditionals.h View File

@@ -16,7 +16,6 @@
16 16
 
17 17
   #if ENABLED(MAKRPANEL)
18 18
     #define DOGLCD
19
-    #define SDSUPPORT
20 19
     #define DEFAULT_LCD_CONTRAST 17
21 20
     #define ULTIPANEL
22 21
     #define NEWPANEL
@@ -48,7 +47,6 @@
48 47
 
49 48
 
50 49
   #if ENABLED(PANEL_ONE)
51
-    #define SDSUPPORT
52 50
     #define ULTIMAKERCONTROLLER
53 51
   #endif
54 52
 
@@ -77,7 +75,6 @@
77 75
 
78 76
   #if ENABLED(MINIPANEL)
79 77
    #define DOGLCD
80
-   #define SDSUPPORT
81 78
    #define ULTIPANEL
82 79
    #define NEWPANEL
83 80
    #define DEFAULT_LCD_CONTRAST 17
@@ -145,7 +142,6 @@
145 142
 
146 143
   #if ENABLED(ULTIPANEL)
147 144
     #define NEWPANEL  //enable this if you have a click-encoder panel
148
-    #define SDSUPPORT
149 145
     #define ULTRA_LCD
150 146
     #if ENABLED(DOGLCD) // Change number of lines to match the DOG graphic display
151 147
       #define LCD_WIDTH 22

Loading…
Cancel
Save