Skip to content

Commit ff7f704

Browse files
committed
Merge branch 'release/v1.3.0'
2 parents 08233cd + 8e00014 commit ff7f704

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

builder/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def generate_uf2(target, source, env):
4343
env.Execute(
4444
" ".join(
4545
[
46-
join(platform.get_package_dir("tool-rp2040tools") or "", "elf2uf2"),
46+
"elf2uf2",
4747
'"%s"' % elf_file,
4848
'"%s"' % elf_file.replace(".elf", ".uf2"),
4949
]
@@ -156,7 +156,7 @@ def generate_uf2(target, source, env):
156156
env.Replace(
157157
UPLOADER=join(platform.get_package_dir("tool-rp2040tools") or "", "rp2040load"),
158158
UPLOADERFLAGS=["-v", "-D"],
159-
UPLOADCMD="$UPLOADER $UPLOADERFLAGS $SOURCES"
159+
UPLOADCMD='"$UPLOADER" $UPLOADERFLAGS $SOURCES'
160160
)
161161

162162
upload_actions = [

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-raspberrypi.git"
2020
},
21-
"version": "1.2.0",
21+
"version": "1.3.0",
2222
"frameworks": {
2323
"arduino": {
2424
"package": "framework-arduino-mbed",
@@ -35,7 +35,7 @@
3535
"type": "framework",
3636
"optional": true,
3737
"owner": "platformio",
38-
"version": "~2.3.0"
38+
"version": "~2.4.0"
3939
},
4040
"tool-rp2040tools": {
4141
"type": "uploader",

0 commit comments

Comments
 (0)