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.
21 lines
534 B
21 lines
534 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
#
|
||
3 years ago
|
# Build tests for STM32F103RC BigTreeTech (SKR Mini E3) with LibMaple STM32F1 HAL
|
||
4 years ago
|
#
|
||
|
|
||
|
# exit on first failure
|
||
|
set -e
|
||
|
|
||
|
#
|
||
|
# Build with the default configurations
|
||
|
#
|
||
|
restore_configs
|
||
|
opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V1_0 SERIAL_PORT 1 SERIAL_PORT_2 -1 \
|
||
|
X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2209 Z_DRIVER_TYPE TMC2209 E0_DRIVER_TYPE TMC2209
|
||
|
opt_enable PINS_DEBUGGING Z_IDLE_HEIGHT
|
||
|
|
||
|
exec_test $1 $2 "BigTreeTech SKR Mini E3 1.0 - Basic Config with TMC2209 HW Serial" "$3"
|
||
|
|
||
|
# clean up
|
||
|
restore_configs
|