2021-05-08 22:06:21 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for LERDGEK environment
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build with the typical configuration
|
|
|
|
#
|
|
|
|
restore_configs
|
|
|
|
opt_set MOTHERBOARD BOARD_LERDGE_K SERIAL_PORT 1
|
2023-07-24 03:31:39 +00:00
|
|
|
opt_enable TFT_GENERIC TFT_INTERFACE_FSMC TFT_COLOR_UI COMPACT_MARLIN_BOOT_LOGO
|
2021-05-08 22:06:21 +00:00
|
|
|
exec_test $1 $2 "LERDGE K with Generic FSMC TFT with ColorUI" "$3"
|
|
|
|
|
|
|
|
# clean up
|
|
|
|
restore_configs
|