Skip to content

Commit 09885ef

Browse files
committed
Add portenta C33 firmware to the plugin system
1 parent 61e036b commit 09885ef

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: firmwares/ESP32-C3/1.5.0/ESP32-C3.bin

897 KB
Binary file not shown.

Diff for: generator/generator.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,20 @@ def create_boards_dictionary(new):
5050
}
5151
if new:
5252
boards = {
53+
# "uploader_plugin" and "additional_tools" need to be hard coded because
54+
# there is no way to retrieve them dinamically
5355
"arduino:renesas_uno:unor4wifi": {
5456
"fqbn": "arduino:renesas_uno:unor4wifi",
5557
"firmware": [],
56-
# "uploader_plugin" and "additional_tools" need to be hard coded because
57-
# there is no way to retrieve them dinamically
5858
"uploader_plugin": "arduino:[email protected]",
5959
"additional_tools": ["arduino:[email protected]", "arduino:[email protected]"],
6060
},
61+
"arduino:renesas_portenta:portenta_c33": {
62+
"fqbn": "arduino:renesas_portenta:portenta_c33",
63+
"firmware": [],
64+
"uploader_plugin": "arduino:[email protected]",
65+
"additional_tools": ["arduino:[email protected]", "arduino:[email protected]"],
66+
},
6167
}
6268
return boards
6369

Diff for: generator/new_boards.json

+5
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33
"moduleName": "ESP32-S3",
44
"versions": ["0.1.0", "0.2.0", "0.2.1"],
55
"name": "Arduino UNO R4 WiFi"
6+
},
7+
"arduino:renesas_portenta:portenta_c33": {
8+
"moduleName": "ESP32-C3",
9+
"versions": ["1.5.0"],
10+
"name": "Arduino Portenta C33"
611
}
712
}

0 commit comments

Comments
 (0)