2019-07-19 05:38:03 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for STM32F407VET6
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
2020-05-10 08:49:30 +02:00
|
|
|
restore_configs
|
2019-07-19 05:38:03 +02:00
|
|
|
use_example_configs STM32/Black_STM32F407VET6
|
2019-07-30 09:30:00 +02:00
|
|
|
opt_enable BAUD_RATE_GCODE
|
2020-11-18 03:04:28 +01:00
|
|
|
exec_test $1 $2 "Full-featured Sample Black STM32F407VET6 config" "$3"
|
2019-07-19 05:38:03 +02:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
restore_configs
|