LCD_CONTRAST to uint16_t for 1.1.x parity (#9148)
This commit is contained in:
parent
59d48b9b1f
commit
4393c3ef7f
@ -189,7 +189,7 @@ typedef struct SettingsDataStruct {
|
|||||||
//
|
//
|
||||||
// HAS_LCD_CONTRAST
|
// HAS_LCD_CONTRAST
|
||||||
//
|
//
|
||||||
uint16_t lcd_contrast; // M250 C
|
int16_t lcd_contrast; // M250 C
|
||||||
|
|
||||||
//
|
//
|
||||||
// FWRETRACT
|
// FWRETRACT
|
||||||
@ -618,7 +618,7 @@ void MarlinSettings::postprocess() {
|
|||||||
_FIELD_TEST(lcd_contrast);
|
_FIELD_TEST(lcd_contrast);
|
||||||
|
|
||||||
#if !HAS_LCD_CONTRAST
|
#if !HAS_LCD_CONTRAST
|
||||||
const uint16_t lcd_contrast = 32;
|
const int16_t lcd_contrast = 32;
|
||||||
#endif
|
#endif
|
||||||
EEPROM_WRITE(lcd_contrast);
|
EEPROM_WRITE(lcd_contrast);
|
||||||
|
|
||||||
@ -1159,7 +1159,7 @@ void MarlinSettings::postprocess() {
|
|||||||
_FIELD_TEST(lcd_contrast);
|
_FIELD_TEST(lcd_contrast);
|
||||||
|
|
||||||
#if !HAS_LCD_CONTRAST
|
#if !HAS_LCD_CONTRAST
|
||||||
uint16_t lcd_contrast;
|
int16_t lcd_contrast;
|
||||||
#endif
|
#endif
|
||||||
EEPROM_READ(lcd_contrast);
|
EEPROM_READ(lcd_contrast);
|
||||||
|
|
||||||
|
@ -5236,7 +5236,7 @@ void lcd_reset_alert_level() { lcd_status_message_level = 0; }
|
|||||||
|
|
||||||
#if HAS_LCD_CONTRAST
|
#if HAS_LCD_CONTRAST
|
||||||
|
|
||||||
void set_lcd_contrast(const uint16_t value) {
|
void set_lcd_contrast(const int16_t value) {
|
||||||
lcd_contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
|
lcd_contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
|
||||||
u8g.setContrast(lcd_contrast);
|
u8g.setContrast(lcd_contrast);
|
||||||
}
|
}
|
||||||
|
@ -71,8 +71,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DOGLCD)
|
#if ENABLED(DOGLCD)
|
||||||
extern uint16_t lcd_contrast;
|
extern int16_t lcd_contrast;
|
||||||
void set_lcd_contrast(const uint16_t value);
|
void set_lcd_contrast(const int16_t value);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(SHOW_BOOTSCREEN)
|
#if ENABLED(SHOW_BOOTSCREEN)
|
||||||
|
@ -222,7 +222,7 @@
|
|||||||
|
|
||||||
#include "utf_mapper.h"
|
#include "utf_mapper.h"
|
||||||
|
|
||||||
uint16_t lcd_contrast; // Initialized by settings.load()
|
int16_t lcd_contrast; // Initialized by settings.load()
|
||||||
static char currentfont = 0;
|
static char currentfont = 0;
|
||||||
|
|
||||||
// The current graphical page being rendered
|
// The current graphical page being rendered
|
||||||
|
Loading…
x
Reference in New Issue
Block a user