2019-08-19 04:29:59 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for STM32F1 ARMED
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build with the default configurations
|
|
|
|
#
|
2020-05-10 06:49:30 +00:00
|
|
|
restore_configs
|
2019-08-19 04:29:59 +00:00
|
|
|
use_example_configs ArmEd
|
2020-05-10 06:49:30 +00:00
|
|
|
opt_set X_DRIVER_TYPE TMC2130
|
|
|
|
opt_set Y_DRIVER_TYPE TMC2208
|
|
|
|
exec_test $1 $2 "ArmEd Example Configuration with mixed TMC Drivers"
|
2019-08-19 04:29:59 +00:00
|
|
|
|
|
|
|
# clean up
|
|
|
|
restore_configs
|