2019-08-19 06:29:59 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2020-07-30 08:43:19 +02:00
|
|
|
# Build tests for MKS Robin
|
|
|
|
# (STM32F1 genericSTM32F103ZE)
|
2019-08-19 06:29:59 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
use_example_configs Mks/Robin
|
2020-11-18 03:04:28 +01:00
|
|
|
exec_test $1 $2 "MKS Robin config (FSMC Color UI)" "$3"
|
2019-08-19 06:29:59 +02:00
|
|
|
|
2020-12-17 13:18:07 +01:00
|
|
|
#
|
|
|
|
# MKS Robin LVGL FSMC
|
|
|
|
#
|
|
|
|
use_example_configs Mks/Robin
|
|
|
|
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" "$3"
|
|
|
|
|
2019-08-19 06:29:59 +02:00
|
|
|
# cleanup
|
|
|
|
restore_configs
|