Browse Source

DOGM: Slow down touchscreen calibration (#20454)

vanilla_fb_2.0.x
Tanguy Pruvot 4 years ago
committed by Scott Lahteine
parent
commit
f7f531e59d
  1. 5
      Marlin/src/lcd/dogm/u8g_dev_tft_upscale_from_128x64.cpp

5
Marlin/src/lcd/dogm/u8g_dev_tft_upscale_from_128x64.cpp

@ -525,6 +525,11 @@ U8G_PB_DEV(u8g_dev_tft_320x240_upscale_from_128x64, WIDTH, HEIGHT, PAGE_HEIGHT,
lcd_put_u8str(0, LCD_PIXEL_HEIGHT / 2, str);
} while (u8g.nextPage());
drawing_screen = false;
safe_delay(250);
if (calibration_stage == CALIBRATION_SUCCESS) {
safe_delay(500);
ui.goto_previous_screen();
}
}
#endif // TOUCH_SCREEN_CALIBRATION

Loading…
Cancel
Save