2020-05-10 06:49:30 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for STM32F401VE_STEVAL
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Build examples
|
|
|
|
restore_configs
|
2021-03-03 06:15:56 +00:00
|
|
|
opt_set MOTHERBOARD BOARD_STEVAL_3DP001V1 SERIAL_PORT -1
|
2020-11-18 02:04:28 +00:00
|
|
|
exec_test $1 $2 "STM32F401VE_STEVAL Default Config" "$3"
|
2020-05-10 06:49:30 +00:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
restore_configs
|