Skip to content

Commit

Permalink
Merge branch 'release/v1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
valeros committed Nov 29, 2024
2 parents 889d57c + 9764327 commit e34e7ba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- "examples/arduino-internal-libs"
- "examples/arduino-uno-r4-led-animation"
- "examples/arduino-wifiscan"
- "examples/arduino-iot-cloud-basic"
# - "examples/arduino-iot-cloud-basic"
- "examples/cmsis-blink"
- "examples/fsp-blink"
- "examples/fsp-button-isr"
Expand Down
3 changes: 3 additions & 0 deletions boards/uno_r4_wifi.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
"variant": "UNOWIFIR4"
},
"debug": {
"default_tools": [
"cmsis-dap"
],
"onboard_tools": [
"cmsis-dap"
],
Expand Down
6 changes: 3 additions & 3 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-renesas-ra.git"
},
"version": "1.4.0",
"version": "1.5.0",
"frameworks": {
"arduino": {
"package": "framework-arduinorenesas-uno",
Expand All @@ -46,13 +46,13 @@
"type": "framework",
"optional": true,
"owner": "platformio",
"version": "~1.1.0"
"version": "~1.2.2"
},
"framework-arduinorenesas-portenta": {
"type": "framework",
"optional": true,
"owner": "platformio",
"version": "~1.1.0"
"version": "~1.2.2"
},
"framework-renesas-fsp": {
"type": "framework",
Expand Down
7 changes: 7 additions & 0 deletions platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,13 @@ def _add_default_debug_tools(self, board):
],
}

debug["tools"][link]["onboard"] = link in debug.get(
"onboard_tools", []
)
debug["tools"][link]["default"] = link in debug.get(
"default_tools", []
)

board.manifest["debug"] = debug
return board

Expand Down

0 comments on commit e34e7ba

Please sign in to comment.