forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix GTR / SKR PRO + USB Flash Drive build (MarlinFirmware#21197)
- Loading branch information
1 parent
94d1637
commit b428a53
Showing
2 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for BigTreeTech GTR 1.0 | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
restore_configs | ||
opt_set MOTHERBOARD BOARD_BTT_GTR_V1_0 | ||
opt_set SERIAL_PORT 3 | ||
opt_set EXTRUDERS 8 | ||
opt_set TEMP_SENSOR_1 1 | ||
opt_set TEMP_SENSOR_2 1 | ||
opt_set TEMP_SENSOR_3 1 | ||
opt_set TEMP_SENSOR_4 1 | ||
opt_set TEMP_SENSOR_5 1 | ||
opt_set TEMP_SENSOR_6 1 | ||
opt_set TEMP_SENSOR_7 1 | ||
opt_set SDSUPPORT | ||
opt_set USB_FLASH_DRIVE_SUPPORT | ||
opt_set USE_OTG_USB_HOST | ||
# Not necessary to enable auto-fan for all extruders to hit problematic code paths | ||
opt_set E0_AUTO_FAN_PIN PC10 | ||
opt_set E1_AUTO_FAN_PIN PC11 | ||
opt_set E2_AUTO_FAN_PIN PC12 | ||
opt_set X_DRIVER_TYPE TMC2208 | ||
opt_set Y_DRIVER_TYPE TMC2130 | ||
opt_set NEOPIXEL_PIN PF13 | ||
opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER BLTOUCH NEOPIXEL_LED Z_SAFE_HOMING | ||
opt_enable FILAMENT_RUNOUT_SENSOR NOZZLE_PARK_FEATURE ADVANCED_PAUSE_FEATURE | ||
opt_set FIL_RUNOUT_PIN 3 | ||
opt_set FIL_RUNOUT2_PIN 4 | ||
opt_set FIL_RUNOUT3_PIN 5 | ||
opt_set FIL_RUNOUT4_PIN 6 | ||
opt_set FIL_RUNOUT5_PIN 7 | ||
opt_set FIL_RUNOUT6_PIN 8 | ||
opt_set FIL_RUNOUT7_PIN 9 | ||
opt_set FIL_RUNOUT8_PIN 10 | ||
opt_set FIL_RUNOUT4_STATE HIGH | ||
opt_enable FIL_RUNOUT4_PULLUP | ||
opt_set FIL_RUNOUT8_STATE HIGH | ||
opt_enable FIL_RUNOUT8_PULLUP | ||
exec_test $1 $2 "BigTreeTech GTR + OTG USB Flash Drive + Extruders with Auto-Fan, Mixed TMC Drivers, and Runout Sensors with distinct states" "$3" | ||
|
||
# clean up | ||
restore_configs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters