File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments