You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
353 B
18 lines
353 B
#!/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
|
|
opt_enable TFT_GENERIC TFT_INTERFACE_FSMC TFT_COLOR_UI
|
|
exec_test $1 $2 "LERDGE K with Generic FSMC TFT with ColorUI" "$3"
|
|
|
|
# clean up
|
|
restore_configs
|
|
|