We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78d07dc commit 74ffd03Copy full SHA for 74ffd03
.github/workflows/test-rtt.yml
@@ -75,7 +75,7 @@ jobs:
75
run: |
76
. .venv/bin/activate
77
serial=$(sed -n '1p' serials.txt)
78
- timeout 5 bmlab-rtt --serial $serial --timeout 3 | tee rtt-serial1.txt || true
+ timeout 5 bmlab-rtt --serial $serial --mcu STM32F103RE --timeout 3 | tee rtt-serial1.txt || true
79
80
if [ ! -s rtt-serial1.txt ]; then
81
echo "Test 1 failed: no RTT output"
@@ -85,7 +85,8 @@ jobs:
85
- name: Test 2 — RTT auto-detect device
86
87
88
- timeout 5 bmlab-rtt --timeout 3 | tee rtt-auto.txt || true
+ serial=$(sed -n '1p' serials.txt)
89
+ timeout 5 bmlab-rtt --serial $serial --timeout 3 | tee rtt-auto.txt || true
90
91
if [ ! -s rtt-auto.txt ]; then
92
echo "Test 2 failed: no RTT output"
0 commit comments