Fix missing LCD_STR_REFRESH
This commit is contained in:
parent
699aa35df6
commit
445227c807
@ -245,7 +245,7 @@
|
|||||||
#define LCD_DEGREE_CHAR 0x01
|
#define LCD_DEGREE_CHAR 0x01
|
||||||
#define LCD_STR_THERMOMETER "\x02" // Still used with string concatenation
|
#define LCD_STR_THERMOMETER "\x02" // Still used with string concatenation
|
||||||
#define LCD_UPLEVEL_CHAR 0x03
|
#define LCD_UPLEVEL_CHAR 0x03
|
||||||
#define LCD_REFRESH_CHAR 0x04
|
#define LCD_STR_REFRESH "\x04"
|
||||||
#define LCD_STR_FOLDER "\x05"
|
#define LCD_STR_FOLDER "\x05"
|
||||||
#define LCD_FEEDRATE_CHAR 0x06
|
#define LCD_FEEDRATE_CHAR 0x06
|
||||||
#define LCD_CLOCK_CHAR 0x07
|
#define LCD_CLOCK_CHAR 0x07
|
||||||
|
@ -341,13 +341,13 @@ static void lcd_set_custom_characters(
|
|||||||
}
|
}
|
||||||
else { // Custom characters for submenus
|
else { // Custom characters for submenus
|
||||||
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
||||||
createChar_P(LCD_REFRESH_CHAR, refresh);
|
createChar_P(LCD_STR_REFRESH[0], refresh);
|
||||||
createChar_P(LCD_STR_FOLDER[0], folder);
|
createChar_P(LCD_STR_FOLDER[0], folder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
|
||||||
createChar_P(LCD_REFRESH_CHAR, refresh);
|
createChar_P(LCD_STR_REFRESH[0], refresh);
|
||||||
createChar_P(LCD_STR_FOLDER[0], folder);
|
createChar_P(LCD_STR_FOLDER[0], folder);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user