Browse Source

Merge pull request #6363 from dot-bob/display_reset

Identifed a display initialization issue.
pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
bddd75aa5c
  1. 6
      Marlin/ultralcd_impl_DOGM.h

6
Marlin/ultralcd_impl_DOGM.h

@ -240,7 +240,7 @@ void lcd_printPGM(const char* str) {
for (; char c = pgm_read_byte(str); ++str) lcd_print(c);
}
// Initialize or re-initializw the LCD
// Initialize or re-initialize the LCD
static void lcd_implementation_init() {
#if PIN_EXISTS(LCD_BACKLIGHT) // Enable LCD backlight
@ -248,7 +248,11 @@ static void lcd_implementation_init() {
#endif
#if PIN_EXISTS(LCD_RESET)
OUT_WRITE(LCD_RESET_PIN, LOW); // perform a clean hardware reset
_delay_ms(5);
OUT_WRITE(LCD_RESET_PIN, HIGH);
_delay_ms(5); // delay to allow the display to initalize
u8g.begin(); // re-initialize the display
#endif
#if DISABLED(MINIPANEL) // setContrast not working for Mini Panel

Loading…
Cancel
Save