Skip to content

Commit 8aeb662

Browse files
rhapsodyvhectorgimenez
authored andcommitted
BTT SKR Mini E3 for HAL/STM32 (MarlinFirmware#21488)
1 parent 7fa09de commit 8aeb662

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Build tests for STM32F103RC BigTreeTech (SKR Mini v1.1)
4+
#
5+
6+
# exit on first failure
7+
set -e
8+
9+
#
10+
# Build with the default configurations
11+
#
12+
restore_configs
13+
opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_V1_1 SERIAL_PORT 1 SERIAL_PORT_2 -1
14+
exec_test $1 $2 "BigTreeTech SKR Mini v1.1 - Basic Configuration" "$3"
15+
16+
# clean up
17+
restore_configs
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Build tests for STM32F103RC BigTreeTech (SKR Mini E3)
4+
#
5+
6+
# exit on first failure
7+
set -e
8+
9+
#
10+
# Build with the default configurations
11+
#
12+
restore_configs
13+
opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V1_0 SERIAL_PORT 1 SERIAL_PORT_2 -1 \
14+
X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2209 Z_DRIVER_TYPE TMC2209 E0_DRIVER_TYPE TMC2209
15+
opt_enable PINS_DEBUGGING Z_IDLE_HEIGHT
16+
17+
exec_test $1 $2 "BigTreeTech SKR Mini E3 1.0 - Basic Config with TMC2209 HW Serial" "$3"
18+
19+
# clean up
20+
restore_configs

0 commit comments

Comments
 (0)