Skip to content

Commit da06313

Browse files
committed
Add portenta C33 firmware to the plugin system
1 parent 61fd5bc commit da06313

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-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

+4
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
"arduino:renesas_uno:unor4wifi": {
33
"moduleName": "ESP32-S3",
44
"versions": ["0.1.0", "0.2.0"]
5+
},
6+
"arduino:renesas_portenta:portenta_c33": {
7+
"moduleName": "ESP32-C3",
8+
"versions": ["1.5.0"]
59
}
610
}

0 commit comments

Comments
 (0)