Browse Source

Fix missing LCD_STR_REFRESH

Scott Lahteine 8 years ago
parent
commit
445227c807
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      Marlin/Conditionals_LCD.h
  2. 2
    2
      Marlin/ultralcd_impl_HD44780.h

+ 1
- 1
Marlin/Conditionals_LCD.h View File

245
     #define LCD_DEGREE_CHAR      0x01
245
     #define LCD_DEGREE_CHAR      0x01
246
     #define LCD_STR_THERMOMETER "\x02" // Still used with string concatenation
246
     #define LCD_STR_THERMOMETER "\x02" // Still used with string concatenation
247
     #define LCD_UPLEVEL_CHAR     0x03
247
     #define LCD_UPLEVEL_CHAR     0x03
248
-    #define LCD_REFRESH_CHAR     0x04
248
+    #define LCD_STR_REFRESH     "\x04"
249
     #define LCD_STR_FOLDER      "\x05"
249
     #define LCD_STR_FOLDER      "\x05"
250
     #define LCD_FEEDRATE_CHAR    0x06
250
     #define LCD_FEEDRATE_CHAR    0x06
251
     #define LCD_CLOCK_CHAR       0x07
251
     #define LCD_CLOCK_CHAR       0x07

+ 2
- 2
Marlin/ultralcd_impl_HD44780.h View File

341
         }
341
         }
342
         else { // Custom characters for submenus
342
         else { // Custom characters for submenus
343
           createChar_P(LCD_UPLEVEL_CHAR, uplevel);
343
           createChar_P(LCD_UPLEVEL_CHAR, uplevel);
344
-          createChar_P(LCD_REFRESH_CHAR, refresh);
344
+          createChar_P(LCD_STR_REFRESH[0], refresh);
345
           createChar_P(LCD_STR_FOLDER[0], folder);
345
           createChar_P(LCD_STR_FOLDER[0], folder);
346
         }
346
         }
347
       }
347
       }
348
     #else
348
     #else
349
       createChar_P(LCD_UPLEVEL_CHAR, uplevel);
349
       createChar_P(LCD_UPLEVEL_CHAR, uplevel);
350
-      createChar_P(LCD_REFRESH_CHAR, refresh);
350
+      createChar_P(LCD_STR_REFRESH[0], refresh);
351
       createChar_P(LCD_STR_FOLDER[0], folder);
351
       createChar_P(LCD_STR_FOLDER[0], folder);
352
     #endif
352
     #endif
353
 
353
 

Loading…
Cancel
Save