Przeglądaj źródła

Replace tabs with spaces

Scott Lahteine 3 lat temu
rodzic
commit
d83baf8925

+ 2
- 2
Marlin/src/lcd/TFTGLCD/ultralcd_TFTGLCD.cpp Wyświetl plik

@@ -113,8 +113,8 @@ enum Commands {         // based on Smoothieware commands
113 113
   // Other commands... 0xE0 thru 0xFF
114 114
   GET_LCD_ROW = 0xE0,   // for detect panel
115 115
   GET_LCD_COL,          // reserved for compatibility with Smoothieware, not used
116
-	LCD_PUT,		          // write one line to LCD
117
-	INIT_SCREEN = 0xFE,   // clear panel buffer
116
+  LCD_PUT,              // write one line to LCD
117
+  INIT_SCREEN = 0xFE,   // clear panel buffer
118 118
 };
119 119
 
120 120
 static unsigned char framebuffer[FBSIZE];

+ 30
- 30
Marlin/src/lcd/tft/tft_color.h Wyświetl plik

@@ -73,104 +73,104 @@
73 73
   #define COLOR_BACKGROUND    0x20AC  // #1E156E
74 74
 #endif
75 75
 #ifndef COLOR_SELECTION_BG
76
-	#define COLOR_SELECTION_BG    0x9930  // #992380
76
+  #define COLOR_SELECTION_BG    0x9930  // #992380
77 77
 #endif
78 78
 #ifndef COLOR_WEBSITE_URL
79
-	#define COLOR_WEBSITE_URL     0x03B7
79
+  #define COLOR_WEBSITE_URL     0x03B7
80 80
 #endif
81 81
 
82 82
 #ifndef COLOR_INACTIVE
83
-	#define COLOR_INACTIVE          COLOR_GREY
83
+  #define COLOR_INACTIVE          COLOR_GREY
84 84
 #endif
85 85
 #ifndef COLOR_COLD
86
-	#define COLOR_COLD              COLOR_AQUA
86
+  #define COLOR_COLD              COLOR_AQUA
87 87
 #endif
88 88
 #ifndef COLOR_HOTEND
89
-	#define COLOR_HOTEND            COLOR_SCARLET
89
+  #define COLOR_HOTEND            COLOR_SCARLET
90 90
 #endif
91 91
 #ifndef COLOR_HEATED_BED
92
-	#define COLOR_HEATED_BED        COLOR_DARK_ORANGE
92
+  #define COLOR_HEATED_BED        COLOR_DARK_ORANGE
93 93
 #endif
94 94
 #ifndef COLOR_CHAMBER
95
-	#define COLOR_CHAMBER           COLOR_DARK_ORANGE
95
+  #define COLOR_CHAMBER           COLOR_DARK_ORANGE
96 96
 #endif
97 97
 #ifndef COLOR_FAN
98
-	#define COLOR_FAN               COLOR_AQUA
98
+  #define COLOR_FAN               COLOR_AQUA
99 99
 #endif
100 100
 
101 101
 #ifndef COLOR_AXIS_HOMED
102
-	#define COLOR_AXIS_HOMED        COLOR_WHITE
102
+  #define COLOR_AXIS_HOMED        COLOR_WHITE
103 103
 #endif
104 104
 #ifndef COLOR_AXIS_NOT_HOMED
105
-	#define COLOR_AXIS_NOT_HOMED    COLOR_YELLOW
105
+  #define COLOR_AXIS_NOT_HOMED    COLOR_YELLOW
106 106
 #endif
107 107
 
108 108
 #ifndef COLOR_RATE_100
109
-	#define COLOR_RATE_100          COLOR_VIVID_GREEN
109
+  #define COLOR_RATE_100          COLOR_VIVID_GREEN
110 110
 #endif
111 111
 #ifndef COLOR_RATE_ALTERED
112
-	#define COLOR_RATE_ALTERED      COLOR_YELLOW
112
+  #define COLOR_RATE_ALTERED      COLOR_YELLOW
113 113
 #endif
114 114
 
115 115
 #ifndef COLOR_PRINT_TIME
116
-	#define COLOR_PRINT_TIME        COLOR_AQUA
116
+  #define COLOR_PRINT_TIME        COLOR_AQUA
117 117
 #endif
118 118
 
119 119
 #ifndef COLOR_PROGRESS_FRAME
120
-	#define COLOR_PROGRESS_FRAME    COLOR_WHITE
120
+  #define COLOR_PROGRESS_FRAME    COLOR_WHITE
121 121
 #endif
122 122
 #ifndef COLOR_PROGRESS_BAR
123
-	#define COLOR_PROGRESS_BAR      COLOR_BLUE
123
+  #define COLOR_PROGRESS_BAR      COLOR_BLUE
124 124
 #endif
125 125
 #ifndef COLOR_PROGRESS_BG
126
-	#define COLOR_PROGRESS_BG       COLOR_BLACK
126
+  #define COLOR_PROGRESS_BG       COLOR_BLACK
127 127
 #endif
128 128
 
129 129
 #ifndef COLOR_STATUS_MESSAGE
130
-	#define COLOR_STATUS_MESSAGE    COLOR_YELLOW
130
+  #define COLOR_STATUS_MESSAGE    COLOR_YELLOW
131 131
 #endif
132 132
 
133 133
 #ifndef COLOR_CONTROL_ENABLED
134
-	#define COLOR_CONTROL_ENABLED   COLOR_WHITE
134
+  #define COLOR_CONTROL_ENABLED   COLOR_WHITE
135 135
 #endif
136 136
 #ifndef COLOR_CONTROL_DISABLED
137
-	#define COLOR_CONTROL_DISABLED  COLOR_GREY
137
+  #define COLOR_CONTROL_DISABLED  COLOR_GREY
138 138
 #endif
139 139
 #ifndef COLOR_CONTROL_CANCEL
140
-	#define COLOR_CONTROL_CANCEL    COLOR_SCARLET
140
+  #define COLOR_CONTROL_CANCEL    COLOR_SCARLET
141 141
 #endif
142 142
 #ifndef COLOR_CONTROL_CONFIRM
143
-	#define COLOR_CONTROL_CONFIRM   COLOR_VIVID_GREEN
143
+  #define COLOR_CONTROL_CONFIRM   COLOR_VIVID_GREEN
144 144
 #endif
145 145
 #ifndef COLOR_BUSY
146
-	#define COLOR_BUSY              COLOR_SILVER
146
+  #define COLOR_BUSY              COLOR_SILVER
147 147
 #endif
148 148
 
149 149
 #ifndef COLOR_MENU_TEXT
150
-	#define COLOR_MENU_TEXT         COLOR_YELLOW
150
+  #define COLOR_MENU_TEXT         COLOR_YELLOW
151 151
 #endif
152 152
 #ifndef COLOR_MENU_VALUE
153
-	#define COLOR_MENU_VALUE        COLOR_WHITE
153
+  #define COLOR_MENU_VALUE        COLOR_WHITE
154 154
 #endif
155 155
 
156 156
 #ifndef COLOR_SLIDER
157
-	#define COLOR_SLIDER            COLOR_WHITE
157
+  #define COLOR_SLIDER            COLOR_WHITE
158 158
 #endif
159 159
 #ifndef COLOR_SLIDER_INACTIVE
160
-	#define COLOR_SLIDER_INACTIVE   COLOR_GREY
160
+  #define COLOR_SLIDER_INACTIVE   COLOR_GREY
161 161
 #endif
162 162
 
163 163
 #ifndef COLOR_UBL
164
-	#define COLOR_UBL               COLOR_WHITE
164
+  #define COLOR_UBL               COLOR_WHITE
165 165
 #endif
166 166
 
167 167
 #ifndef COLOR_TOUCH_CALIBRATION
168
-	#define COLOR_TOUCH_CALIBRATION COLOR_WHITE
168
+  #define COLOR_TOUCH_CALIBRATION COLOR_WHITE
169 169
 #endif
170 170
 
171 171
 #ifndef COLOR_KILL_SCREEN_BG
172
-	#define COLOR_KILL_SCREEN_BG    COLOR_MAROON
172
+  #define COLOR_KILL_SCREEN_BG    COLOR_MAROON
173 173
 #endif
174 174
 #ifndef COLOR_KILL_SCREEN_TEXT
175
-	#define COLOR_KILL_SCREEN_TEXT  COLOR_WHITE
175
+  #define COLOR_KILL_SCREEN_TEXT  COLOR_WHITE
176 176
 #endif

Ładowanie…
Anuluj
Zapisz