You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
381 B
19 lines
381 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Build tests for NUCLEO_F767ZI
|
||
|
#
|
||
|
|
||
|
# exit on first failure
|
||
|
set -e
|
||
|
|
||
|
#
|
||
|
# Build with the default configurations
|
||
|
#
|
||
|
restore_configs
|
||
4 years ago
|
opt_set MOTHERBOARD BOARD_NUCLEO_F767ZI SERIAL_PORT -1 X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2208
|
||
4 years ago
|
opt_enable BLTOUCH Z_SAFE_HOMING SPEAKER SOFTWARE_DRIVER_ENABLE
|
||
4 years ago
|
exec_test $1 $2 "Mixed timer usage" "$3"
|
||
4 years ago
|
|
||
|
# clean up
|
||
|
restore_configs
|