2019-08-19 06:29:59 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for STM32F1 ARMED
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build with the default configurations
|
|
|
|
#
|
2020-05-10 08:49:30 +02:00
|
|
|
restore_configs
|
2019-08-19 06:29:59 +02:00
|
|
|
use_example_configs ArmEd
|
2021-03-03 07:15:56 +01:00
|
|
|
opt_set X_DRIVER_TYPE TMC2130 Y_DRIVER_TYPE TMC2208
|
2021-03-24 18:21:11 +01:00
|
|
|
opt_enable LASER_SYNCHRONOUS_M106_M107
|
2020-11-18 03:04:28 +01:00
|
|
|
exec_test $1 $2 "ArmEd Example Configuration with mixed TMC Drivers" "$3"
|
2019-08-19 06:29:59 +02:00
|
|
|
|
|
|
|
# clean up
|
|
|
|
restore_configs
|