-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for MKS Robin nano | ||
# (STM32F1 genericSTM32F103VE) | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
# | ||
# MKS Robin nano v1.2 Emulated DOGM FSMC | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO | ||
exec_test $1 $2 "MKS Robin nano v1.2 Emulated DOGM FSMC" | ||
|
||
# | ||
# MKS Robin v2 nano Emulated DOGM SPI | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
opt_disable TFT_INTERFACE_FSMC | ||
opt_enable TFT_INTERFACE_SPI | ||
exec_test $1 $2 "MKS Robin v2 nano Emulated DOGM SPI" | ||
|
||
# | ||
# MKS Robin nano v1.2 LVGL FSMC | ||
# | ||
# use_example_configs Mks/Robin | ||
# opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO | ||
# opt_disable TFT_CLASSIC_UI TFT_COLOR_UI TOUCH_SCREEN TFT_RES_320x240 | ||
# opt_enable TFT_LVGL_UI TFT_RES_480x320 | ||
# exec_test $1 $2 "MKS Robin nano v1.2 LVGL FSMC" | ||
|
||
# | ||
# MKS Robin v2 nano LVGL SPI | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
# use_example_configs Mks/Robin | ||
# opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
# opt_disable TFT_INTERFACE_FSMC TFT_COLOR_UI TOUCH_SCREEN TFT_RES_320x240 | ||
# opt_enable TFT_INTERFACE_SPI TFT_LVGL_UI TFT_RES_480x320 | ||
# exec_test $1 $2 "MKS Robin v2 nano LVGL SPI" | ||
|
||
# | ||
# MKS Robin v2 nano New Color UI 480x320 SPI | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
opt_disable TFT_INTERFACE_FSMC TFT_RES_320x240 | ||
opt_enable TFT_INTERFACE_SPI TFT_RES_480x320 | ||
exec_test $1 $2 "MKS Robin v2 nano New Color UI 480x320 SPI" | ||
|
||
# | ||
# MKS Robin v2 nano LVGL SPI + TMC | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
# use_example_configs Mks/Robin | ||
# opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
# opt_disable TFT_INTERFACE_FSMC TFT_COLOR_UI TOUCH_SCREEN TFT_RES_320x240 | ||
# opt_enable TFT_INTERFACE_SPI TFT_LVGL_UI TFT_RES_480x320 | ||
# opt_set X_DRIVER_TYPE TMC2209 | ||
# opt_set Y_DRIVER_TYPE TMC2209 | ||
# exec_test $1 $2 "MKS Robin v2 nano LVGL SPI + TMC" | ||
|
||
# cleanup | ||
restore_configs |