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.
33 lines
1.0 KiB
33 lines
1.0 KiB
5 years ago
|
#!/usr/bin/env bash
|
||
|
#
|
||
5 years ago
|
# Build tests for STM32F407ZG BigTreeTech SKR Pro
|
||
5 years ago
|
#
|
||
|
|
||
|
# exit on first failure
|
||
|
set -e
|
||
|
|
||
|
#
|
||
|
# Build with the default configurations
|
||
|
#
|
||
|
restore_configs
|
||
4 years ago
|
opt_set MOTHERBOARD BOARD_BTT_SKR_PRO_V1_1 SERIAL_PORT 1
|
||
4 years ago
|
exec_test $1 $2 "BigTreeTech SKR Pro Default Configuration" "$3"
|
||
5 years ago
|
|
||
5 years ago
|
restore_configs
|
||
4 years ago
|
opt_set MOTHERBOARD BOARD_BTT_SKR_PRO_V1_1 SERIAL_PORT -1 \
|
||
|
EXTRUDERS 3 TEMP_SENSOR_1 1 TEMP_SENSOR_2 1 \
|
||
|
E0_AUTO_FAN_PIN PC10 E1_AUTO_FAN_PIN PC11 E2_AUTO_FAN_PIN PC12 \
|
||
|
X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2130
|
||
4 years ago
|
opt_enable BLTOUCH EEPROM_SETTINGS AUTO_BED_LEVELING_3POINT Z_SAFE_HOMING PINS_DEBUGGING
|
||
4 years ago
|
exec_test $1 $2 "BigTreeTech SKR Pro 3 Extruders, Auto-Fan, BLTOUCH, mixed TMC drivers" "$3"
|
||
5 years ago
|
|
||
4 years ago
|
restore_configs
|
||
4 years ago
|
opt_set MOTHERBOARD BOARD_BTT_SKR_PRO_V1_1 SERIAL_PORT -1 \
|
||
|
CUTTER_POWER_UNIT PERCENT \
|
||
|
SPINDLE_LASER_PWM_PIN HEATER_1_PIN SPINDLE_LASER_ENA_PIN HEATER_2_PIN
|
||
4 years ago
|
opt_enable LASER_FEATURE REPRAP_DISCOUNT_SMART_CONTROLLER
|
||
|
exec_test $1 $2 "Laser, LCD, PERCENT power unit" "$3"
|
||
|
|
||
5 years ago
|
# clean up
|
||
|
restore_configs
|