forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
172 additions
and
0 deletions.
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,26 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for STM32F103RE BigTreeTech (SKR E3 DIP v1.0) | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
# | ||
# Build with the default configurations | ||
# | ||
restore_configs | ||
opt_set MOTHERBOARD BOARD_BTT_SKR_E3_DIP SERIAL_PORT 1 SERIAL_PORT_2 -1 | ||
exec_test $1 $2 "BigTreeTech SKR E3 DIP v1.0 - Basic Configuration" "$3" | ||
|
||
restore_configs | ||
opt_set MOTHERBOARD BOARD_BTT_SKR_CR6 SERIAL_PORT -1 SERIAL_PORT_2 2 TEMP_SENSOR_BED 1 | ||
opt_enable CR10_STOCKDISPLAY FAN_SOFT_PWM \ | ||
NOZZLE_AS_PROBE Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN Z_SAFE_HOMING \ | ||
PROBE_ACTIVATION_SWITCH PROBE_TARE PROBE_TARE_ONLY_WHILE_INACTIVE \ | ||
PROBING_HEATERS_OFF PREHEAT_BEFORE_PROBING | ||
opt_disable NOZZLE_TO_PROBE_OFFSET | ||
exec_test $1 $2 "BigTreeTech SKR CR6 PROBE_ACTIVATION_SWITCH, Probe Tare" "$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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for STM32F103VET6 | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
use_example_configs Alfawise/U20 | ||
opt_enable BAUD_RATE_GCODE | ||
exec_test $1 $2 "CLASSIC_UI U20 config" "$3" | ||
|
||
use_example_configs Alfawise/U20 | ||
opt_enable BAUD_RATE_GCODE TFT_COLOR_UI | ||
opt_disable TFT_CLASSIC_UI CUSTOM_STATUS_SCREEN_IMAGE | ||
exec_test $1 $2 "COLOR_UI U20 config" "$3" | ||
|
||
use_example_configs Alfawise/U20-bltouch | ||
opt_enable BAUD_RATE_GCODE | ||
exec_test $1 $2 "BLTouch U20 config" | ||
|
||
# cleanup | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for STM32F103VET6 (using maple STM32F1 framework) | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
use_example_configs Alfawise/U20 | ||
opt_enable BAUD_RATE_GCODE | ||
exec_test $1 $2 "maple CLASSIC_UI U20 config" "$3" | ||
|
||
use_example_configs Alfawise/U20 | ||
opt_enable BAUD_RATE_GCODE TFT_COLOR_UI | ||
opt_disable TFT_CLASSIC_UI CUSTOM_STATUS_SCREEN_IMAGE | ||
exec_test $1 $2 "maple COLOR_UI U20 config" "$3" | ||
|
||
use_example_configs Alfawise/U20-bltouch | ||
opt_enable BAUD_RATE_GCODE | ||
exec_test $1 $2 "maple BLTouch U20 config" | ||
|
||
# cleanup | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for Linux x86_64 | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
# | ||
# Build with the default configurations | ||
# | ||
restore_configs | ||
opt_set MOTHERBOARD BOARD_LINUX_RAMPS TEMP_SENSOR_BED 1 | ||
opt_enable PIDTEMPBED EEPROM_SETTINGS BAUD_RATE_GCODE | ||
exec_test $1 $2 "Linux with EEPROM" "$3" | ||
|
||
# cleanup | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for MKS Robin (HAL/STM32) | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
use_example_configs Mks/Robin | ||
exec_test $1 $2 "MKS Robin base configuration" "$3" | ||
|
||
# cleanup | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for MKS Robin nano with LibMaple STM32F1 HAL | ||
# (STM32F1 genericSTM32F103VE) | ||
# | ||
|
||
# exit on first failure | ||
set -e | ||
|
||
# | ||
# MKS Robin nano v1.2 Emulated DOGM FSMC | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO | ||
exec_test $1 $2 "MKS Robin nano v1.2 Emulated DOGM FSMC" "$3" | ||
|
||
# | ||
# MKS Robin v2 nano Emulated DOGM SPI | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
opt_disable TFT_INTERFACE_FSMC | ||
opt_enable TFT_INTERFACE_SPI | ||
exec_test $1 $2 "MKS Robin v2 nano Emulated DOGM SPI" "$3" | ||
|
||
# | ||
# MKS Robin v2 nano LVGL SPI | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
opt_disable TFT_INTERFACE_FSMC TFT_COLOR_UI TOUCH_SCREEN TFT_RES_320x240 SERIAL_PORT_2 | ||
opt_enable TFT_INTERFACE_SPI TFT_LVGL_UI TFT_RES_480x320 MKS_WIFI_MODULE | ||
opt_add MKS_TEST | ||
exec_test $1 $2 "MKS Robin v2 nano LVGL SPI w/ WiFi" "$3" | ||
|
||
# | ||
# MKS Robin v2 nano New Color UI 480x320 SPI | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
opt_disable TFT_INTERFACE_FSMC TFT_RES_320x240 | ||
opt_enable TFT_INTERFACE_SPI TFT_RES_480x320 | ||
opt_enable BINARY_FILE_TRANSFER | ||
exec_test $1 $2 "MKS Robin v2 nano New Color UI 480x320 SPI + BINARY_FILE_TRANSFER" "$3" | ||
|
||
# | ||
# MKS Robin v2 nano LVGL SPI + TMC | ||
# (Robin v2 nano has no FSMC interface) | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2209 | ||
opt_disable TFT_INTERFACE_FSMC TFT_COLOR_UI TOUCH_SCREEN TFT_RES_320x240 | ||
opt_enable TFT_INTERFACE_SPI TFT_LVGL_UI TFT_RES_480x320 | ||
exec_test $1 $2 "MKS Robin v2 nano LVGL SPI + TMC" "$3" | ||
|
||
# | ||
# MKS Robin v2 nano New Color UI 480x320 SPI Without Touch Screen | ||
# | ||
use_example_configs Mks/Robin | ||
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO_V2 | ||
opt_disable TFT_INTERFACE_FSMC TFT_RES_320x240 TOUCH_SCREEN | ||
opt_enable TFT_INTERFACE_SPI TFT_RES_480x320 TFT_COLOR_UI | ||
exec_test $1 $2 "MKS Robin v2 nano New Color UI 480x320 SPI without TOUCH_SCREEN" "$3" | ||
|
||
# cleanup | ||
restore_configs |