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-03-10 18:05:27 +00:00
|
|
|
opt_enable MEATPACK_ON_SERIAL_PORT_1
|
2021-03-03 06:15:56 +00:00
|
|
|
opt_set Y_DRIVER_TYPE TMC2209 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
|