Skip to content

Commit a3f5b53

Browse files
committed
Merge branch 'release/v19.7.1'
2 parents c460718 + 88a80f6 commit a3f5b53

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

platform.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "git",
1919
"url": "https://github.com/platformio/platform-ststm32.git"
2020
},
21-
"version": "19.7.0",
21+
"version": "19.7.1",
2222
"frameworks": {
2323
"mbed": {
2424
"package": "framework-mbed",
@@ -322,7 +322,7 @@
322322
"type": "uploader",
323323
"optional": true,
324324
"owner": "platformio",
325-
"version": "~3.1200.0"
325+
"version": "~3.1200.7"
326326
},
327327
"tool-jlink": {
328328
"type": "uploader",

platform.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,11 +198,10 @@ def _add_default_debug_tools(self, board):
198198
])
199199
else:
200200
assert debug.get("openocd_target"), (
201-
"Missed target configuration for %s" % board.id)
201+
"Missing target configuration for %s" % board.id)
202202
server_args.extend([
203203
"-f", "interface/%s.cfg" % link,
204-
"-c", "transport select %s" % (
205-
"hla_swd" if link == "stlink" else "swd"),
204+
"-c", "transport select swd",
206205
"-f", "target/%s.cfg" % debug.get("openocd_target")
207206
])
208207
server_args.extend(debug.get("openocd_extra_args", []))

0 commit comments

Comments
 (0)