Browse Source

Clarify sanity-check for custom status bitmap (#20588)

Tanguy Pruvot 4 years ago
parent
commit
624bf10ab5
No account linked to committer's email address
2 changed files with 12 additions and 2 deletions
  1. 1
    1
      Marlin/src/inc/SanityCheck.h
  2. 11
    1
      buildroot/tests/STM32F103VE_longer-tests

+ 1
- 1
Marlin/src/inc/SanityCheck.h View File

@@ -721,7 +721,7 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
721 721
 #if ENABLED(SHOW_CUSTOM_BOOTSCREEN) && NONE(HAS_MARLINUI_U8GLIB, TOUCH_UI_FTDI_EVE)
722 722
   #error "SHOW_CUSTOM_BOOTSCREEN requires Graphical LCD or TOUCH_UI_FTDI_EVE."
723 723
 #elif ENABLED(CUSTOM_STATUS_SCREEN_IMAGE) && !HAS_MARLINUI_U8GLIB
724
-  #error "CUSTOM_STATUS_SCREEN_IMAGE requires a Graphical LCD."
724
+  #error "CUSTOM_STATUS_SCREEN_IMAGE requires a 128x64 DOGM B/W Graphical LCD."
725 725
 #endif
726 726
 
727 727
 /**

+ 11
- 1
buildroot/tests/STM32F103VE_longer-tests View File

@@ -8,7 +8,17 @@ set -e
8 8
 
9 9
 use_example_configs Alfawise/U20
10 10
 opt_enable BAUD_RATE_GCODE
11
-exec_test $1 $2 "Full-featured U20 config" "$3"
11
+exec_test $1 $2 "CLASSIC_UI U20 config" "$3"
12
+
13
+use_example_configs Alfawise/U20
14
+opt_enable BAUD_RATE_GCODE
15
+opt_enable TFT_COLOR_UI
16
+opt_disable TFT_CLASSIC_UI
17
+exec_test $1 $2 "COLOR_UI U20 config" "$3"
18
+
19
+use_example_configs Alfawise/U20-bltouch
20
+opt_enable BAUD_RATE_GCODE
21
+exec_test $1 $2 "BLTouch U20 config"
12 22
 
13 23
 # cleanup
14 24
 restore_configs

Loading…
Cancel
Save