Touch UI fixes for Cocoa Press (#15847)

This commit is contained in:
Marcio Teixeira
2019-11-10 17:49:41 -07:00
committed by Scott Lahteine
parent 28e1614c2e
commit 5639b8ca20
84 changed files with 1036 additions and 994 deletions

View File

@@ -598,8 +598,12 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
/**
* Custom Boot and Status screens
*/
#if EITHER(SHOW_CUSTOM_BOOTSCREEN, CUSTOM_STATUS_SCREEN_IMAGE) && !HAS_GRAPHICAL_LCD
#error "Graphical LCD is required for SHOW_CUSTOM_BOOTSCREEN and CUSTOM_STATUS_SCREEN_IMAGE."
#if ENABLED(SHOW_CUSTOM_BOOTSCREEN) && !HAS_GRAPHICAL_LCD && !ENABLED(LULZBOT_TOUCH_UI)
#error "Graphical LCD is required for SHOW_CUSTOM_BOOTSCREEN."
#endif
#if ENABLED(CUSTOM_STATUS_SCREEN_IMAGE) && !HAS_GRAPHICAL_LCD
#error "Graphical LCD is required for CUSTOM_STATUS_SCREEN_IMAGE."
#endif
/**