Skip to content

Commit 4d0b78a

Browse files
committed
Add new boards
- Wemos D1 R32 - Seeed Studio XIAO ESP32C3 - DFRobot Firebeetle 2 ESP32-S3
1 parent cb35838 commit 4d0b78a

File tree

3 files changed

+130
-0
lines changed

3 files changed

+130
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_ESP32S3_DEV",
9+
"-DARDUINO_USB_MODE=1",
10+
"-DARDUINO_RUNNING_CORE=1",
11+
"-DARDUINO_EVENT_RUNNING_CORE=1"
12+
],
13+
"f_cpu": "240000000L",
14+
"f_flash": "80000000L",
15+
"flash_mode": "qio",
16+
"hwids": [
17+
[
18+
"0x303A",
19+
"0x83CF"
20+
],
21+
[
22+
"0x303A",
23+
"0x1001"
24+
]
25+
],
26+
"mcu": "esp32s3",
27+
"variant": "dfrobot_firebeetle2_esp32s3"
28+
},
29+
"connectivity": [
30+
"wifi"
31+
],
32+
"debug": {
33+
"openocd_target": "esp32s3.cfg"
34+
},
35+
"frameworks": [
36+
"arduino",
37+
"espidf"
38+
],
39+
"name": "DFRobot Firebeetle 2 ESP32-S3",
40+
"upload": {
41+
"flash_size": "4MB",
42+
"maximum_ram_size": 327680,
43+
"maximum_size": 4194304,
44+
"require_upload_port": true,
45+
"speed": 460800
46+
},
47+
"url": "https://www.dfrobot.com/product-1590.html",
48+
"vendor": "DFRobot"
49+
}

boards/seeed_xiao_esp32c3.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32c3_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_XIAO_ESP32C3",
9+
"-DARDUINO_USB_MODE=1",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "160000000L",
13+
"f_flash": "80000000L",
14+
"flash_mode": "qio",
15+
"hwids": [
16+
[
17+
"0x2886",
18+
"0x0047"
19+
]
20+
],
21+
"mcu": "esp32c3",
22+
"variant": "XIAO_ESP32C3"
23+
},
24+
"connectivity": [
25+
"wifi"
26+
],
27+
"debug": {
28+
"openocd_target": "esp32c3.cfg"
29+
},
30+
"frameworks": [
31+
"arduino",
32+
"espidf"
33+
],
34+
"name": "Seeed Studio XIAO ESP32C3",
35+
"upload": {
36+
"flash_size": "4MB",
37+
"maximum_ram_size": 327680,
38+
"maximum_size": 4194304,
39+
"require_upload_port": true,
40+
"speed": 460800
41+
},
42+
"url": "https://wiki.seeedstudio.com/XIAO_ESP32C3_Getting_Started/",
43+
"vendor": "Seeed Studio"
44+
}

boards/wemos_d1_uno32.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": "-DARDUINO_D1_UNO32",
8+
"f_cpu": "240000000L",
9+
"f_flash": "80000000L",
10+
"flash_mode": "dio",
11+
"mcu": "esp32",
12+
"variant": "d1_uno32"
13+
},
14+
"connectivity": [
15+
"wifi",
16+
"bluetooth",
17+
"ethernet",
18+
"can"
19+
],
20+
"debug": {
21+
"openocd_board": "esp-wroom-32.cfg"
22+
},
23+
"frameworks": [
24+
"arduino",
25+
"espidf"
26+
],
27+
"name": "WEMOS D1 R32",
28+
"upload": {
29+
"flash_size": "4MB",
30+
"maximum_ram_size": 327680,
31+
"maximum_size": 4194304,
32+
"require_upload_port": true,
33+
"speed": 460800
34+
},
35+
"url": "https://www.wemos.cc",
36+
"vendor": "WEMOS"
37+
}

0 commit comments

Comments
 (0)