2020-01-14 21:36:47 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for FYSETC_S6
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Build examples
|
|
|
|
restore_configs
|
|
|
|
use_example_configs FYSETC/S6
|
2021-01-24 06:43:23 +00:00
|
|
|
opt_enable MEATPACK
|
2020-05-10 06:49:30 +00:00
|
|
|
opt_set Y_DRIVER_TYPE TMC2209
|
|
|
|
opt_set Z_DRIVER_TYPE TMC2130
|
2020-11-18 02:04:28 +00:00
|
|
|
exec_test $1 $2 "FYSETC S6 Example" "$3"
|
2020-01-14 21:36:47 +00:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
restore_configs
|