Skip to content

Commit 9294e25

Browse files
committed
Merge branch 'release/v1.2.0'
2 parents 9d3d996 + 88df390 commit 9294e25

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

boards/portenta_c33.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"variant": "PORTENTA_C33"
2727
},
2828
"debug": {
29-
"jlink_device": "RA6M5",
29+
"jlink_device": "R7FA6M5",
3030
"svd_path": "R7FA6M5BH.svd"
3131
},
3232
"frameworks": [

boards/uno_r4_minima.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"extra_flags": [
77
"-DARDUINO_MINIMA",
88
"-DARDUINO_UNOR4_MINIMA",
9+
"-DARDUINO_ARCH_RENESAS_UNO",
910
"-DCFG_TUSB_MCU=OPT_MCU_RAXXX"
1011
],
1112
"core": "arduino",

boards/uno_r4_wifi.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
},
66
"extra_flags": [
77
"-DARDUINO_UNOWIFIR4",
8+
"-DARDUINO_ARCH_RENESAS_UNO",
89
"-DARDUINO_UNOR4_WIFI",
910
"-DNO_USB",
1011
"-DBACKTRACE_SUPPORT",

builder/frameworks/arduino.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def load_flags(filename):
117117
("ARDUINO", 10810),
118118
"ARDUINO_ARCH_RENESAS",
119119
"ARDUINO_FSP",
120-
"_XOPEN_SOURCE",
120+
("_XOPEN_SOURCE", 700),
121121
("F_CPU", "$BOARD_F_CPU")
122122
],
123123

@@ -142,14 +142,10 @@ def load_flags(filename):
142142
# Add FPU flags
143143
#
144144

145-
fpv_version = "4-sp"
146-
if board.id == "portenta_c33":
147-
fpv_version = "5"
148-
149145
env.Append(
150146
LINKFLAGS=[
151147
"-mfloat-abi=hard",
152-
"-mfpu=fpv%s-d16" % fpv_version
148+
"-mfpu=fpv%s-sp-d16" % ("5" if board.id == "portenta_c33" else "4"),
153149
]
154150
)
155151

platform.json

Lines changed: 3 additions & 3 deletions
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.1.0",
24+
"version": "1.2.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.0.2"
49+
"version": "~1.0.4"
5050
},
5151
"framework-arduinorenesas-portenta": {
5252
"type": "framework",
5353
"optional": true,
5454
"owner": "platformio",
55-
"version": "~1.0.2"
55+
"version": "~1.0.4"
5656
},
5757
"framework-renesas-fsp": {
5858
"type": "framework",

0 commit comments

Comments
 (0)