Skip to content

Commit e34e7ba

Browse files
committed
Merge branch 'release/v1.5.0'
2 parents 889d57c + 9764327 commit e34e7ba

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

Diff for: .github/workflows/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- "examples/arduino-internal-libs"
1414
- "examples/arduino-uno-r4-led-animation"
1515
- "examples/arduino-wifiscan"
16-
- "examples/arduino-iot-cloud-basic"
16+
# - "examples/arduino-iot-cloud-basic"
1717
- "examples/cmsis-blink"
1818
- "examples/fsp-blink"
1919
- "examples/fsp-button-isr"

Diff for: boards/uno_r4_wifi.json

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
"variant": "UNOWIFIR4"
3030
},
3131
"debug": {
32+
"default_tools": [
33+
"cmsis-dap"
34+
],
3235
"onboard_tools": [
3336
"cmsis-dap"
3437
],

Diff for: platform.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"type": "git",
2222
"url": "https://github.com/platformio/platform-renesas-ra.git"
2323
},
24-
"version": "1.4.0",
24+
"version": "1.5.0",
2525
"frameworks": {
2626
"arduino": {
2727
"package": "framework-arduinorenesas-uno",
@@ -46,13 +46,13 @@
4646
"type": "framework",
4747
"optional": true,
4848
"owner": "platformio",
49-
"version": "~1.1.0"
49+
"version": "~1.2.2"
5050
},
5151
"framework-arduinorenesas-portenta": {
5252
"type": "framework",
5353
"optional": true,
5454
"owner": "platformio",
55-
"version": "~1.1.0"
55+
"version": "~1.2.2"
5656
},
5757
"framework-renesas-fsp": {
5858
"type": "framework",

Diff for: platform.py

+7
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,13 @@ def _add_default_debug_tools(self, board):
156156
],
157157
}
158158

159+
debug["tools"][link]["onboard"] = link in debug.get(
160+
"onboard_tools", []
161+
)
162+
debug["tools"][link]["default"] = link in debug.get(
163+
"default_tools", []
164+
)
165+
159166
board.manifest["debug"] = debug
160167
return board
161168

0 commit comments

Comments
 (0)