Skip to content

Commit c147cbf

Browse files
committed
Boards update
1 parent 52902cc commit c147cbf

14 files changed

+407
-12
lines changed

boards/adafruit_feather_esp32c6.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"build": {
3+
"core": "esp32",
4+
"extra_flags": [
5+
"-DARDUINO_ADAFRUIT_FEATHER_ESP32C6",
6+
"-DARDUINO_USB_MODE=1",
7+
"-DARDUINO_USB_CDC_ON_BOOT=1"
8+
],
9+
"f_cpu": "160000000L",
10+
"f_flash": "80000000L",
11+
"flash_mode": "qio",
12+
"mcu": "esp32c6",
13+
"variant": "adafruit_feather_esp32c6"
14+
},
15+
"connectivity": [
16+
"wifi",
17+
"bluetooth",
18+
"zigbee",
19+
"thread"
20+
],
21+
"debug": {
22+
"openocd_target": "esp32c6.cfg"
23+
},
24+
"frameworks": [
25+
"arduino",
26+
"espidf"
27+
],
28+
"name": "Adafruit Feather ESP32-C6",
29+
"upload": {
30+
"flash_size": "4MB",
31+
"maximum_ram_size": 327680,
32+
"maximum_size": 4194304,
33+
"require_upload_port": true,
34+
"speed": 460800
35+
},
36+
"url": "https://www.adafruit.com/product/5933",
37+
"vendor": "Adafruit"
38+
}

boards/adafruit_feather_esp32s3_tft.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"build": {
33
"arduino": {
4-
"ldscript": "esp32s3_out.ld",
5-
"partitions": "partitions-4MB-tinyuf2.csv"
4+
"partitions": "partitions-4MB-tinyuf2.csv",
5+
"memory_type": "qio_qspi"
66
},
77
"core": "esp32",
88
"extra_flags": [
99
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3_TFT",
1010
"-DARDUINO_USB_CDC_ON_BOOT=1",
1111
"-DARDUINO_RUNNING_CORE=1",
12-
"-DARDUINO_EVENT_RUNNING_CORE=1"
12+
"-DARDUINO_EVENT_RUNNING_CORE=1",
13+
"-DBOARD_HAS_PSRAM"
1314
],
1415
"f_cpu": "240000000L",
1516
"f_flash": "80000000L",

boards/adafruit_matrixportal_esp32s3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"build": {
33
"arduino":{
4-
"partitions": "tinyuf2-partitions-8MB.csv",
4+
"partitions": "partitions-8MB-tinyuf2.csv",
55
"memory_type": "qio_qspi"
66
},
77
"core": "esp32",

boards/dfrobot_romeo_esp32s3.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"build": {
33
"arduino": {
4-
"ldscript": "esp32s3_out.ld",
54
"partitions": "app3M_fat9M_16MB.csv",
65
"memory_type": "qio_opi"
76
},
@@ -10,7 +9,8 @@
109
"-DARDUINO_DFROBOT_ROMEO_ESP32S3",
1110
"-DARDUINO_USB_MODE=1",
1211
"-DARDUINO_RUNNING_CORE=1",
13-
"-DARDUINO_EVENT_RUNNING_CORE=1"
12+
"-DARDUINO_EVENT_RUNNING_CORE=1",
13+
"-DARDUINO_USB_CDC_ON_BOOT=1"
1414
],
1515
"f_cpu": "240000000L",
1616
"f_flash": "80000000L",

boards/freenove_esp32_s3_wroom.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"partitions": "default_8MB.csv",
5+
"memory_type": "qio_opi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_ESP32S3_DEV",
10+
"-DARDUINO_RUNNING_CORE=1",
11+
"-DARDUINO_EVENT_RUNNING_CORE=1",
12+
"-DBOARD_HAS_PSRAM",
13+
"-DARDUINO_USB_MODE=0",
14+
"-DARDUINO_USB_CDC_ON_BOOT=0"
15+
],
16+
"f_cpu": "240000000L",
17+
"f_flash": "80000000L",
18+
"flash_mode": "qio",
19+
"psram_type": "opi",
20+
"hwids": [
21+
[
22+
"0x303A",
23+
"0x1001"
24+
]
25+
],
26+
"mcu": "esp32s3",
27+
"variant": "esp32s3"
28+
},
29+
"connectivity": [
30+
"bluetooth",
31+
"wifi"
32+
],
33+
"debug": {
34+
"default_tool": "esp-builtin",
35+
"onboard_tools": [
36+
"esp-builtin"
37+
],
38+
"openocd_target": "esp32s3.cfg"
39+
},
40+
"frameworks": [
41+
"arduino",
42+
"espidf"
43+
],
44+
"name": "Freenove ESP32-S3 WROOM N8R8 (8MB Flash / 8MB PSRAM)",
45+
"upload": {
46+
"flash_size": "8MB",
47+
"maximum_ram_size": 327680,
48+
"maximum_size": 8388608,
49+
"require_upload_port": true,
50+
"speed": 921600
51+
},
52+
"url": "https://github.com/Freenove/Freenove_ESP32_S3_WROOM_Board",
53+
"vendor": "Freenove"
54+
}

boards/freenove_esp32_wrover.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"build": {
3+
"core": "esp32",
4+
"extra_flags": [
5+
"-DARDUINO_ESP32_DEV",
6+
"-DBOARD_HAS_PSRAM",
7+
"-mfix-esp32-psram-cache-issue",
8+
"-mfix-esp32-psram-cache-strategy=memw"
9+
],
10+
"f_cpu": "240000000L",
11+
"f_flash": "40000000L",
12+
"flash_mode": "dio",
13+
"mcu": "esp32",
14+
"variant": "esp32"
15+
},
16+
"connectivity": [
17+
"wifi",
18+
"bluetooth",
19+
"ethernet",
20+
"can"
21+
],
22+
"debug": {
23+
"openocd_board": "esp-wrover-32.cfg"
24+
},
25+
"frameworks": [
26+
"arduino",
27+
"espidf"
28+
],
29+
"name": "Freenove ESP32-Wrover",
30+
"upload": {
31+
"flash_size": "4MB",
32+
"maximum_ram_size": 327680,
33+
"maximum_size": 4194304,
34+
"require_upload_port": true,
35+
"speed": 460800
36+
},
37+
"url": "https://store.freenove.com/products/fnk0060",
38+
"vendor": "Freenove"
39+
}

boards/heltec_wifi_kit_32_V3.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"build": {
33
"arduino": {
4-
"ldscript": "esp32s3_out.ld",
54
"partitions": "default_8MB.csv"
65
},
76
"core": "esp32",
@@ -21,7 +20,7 @@
2120
]
2221
],
2322
"mcu": "esp32s3",
24-
"variant": "heltec_wifi_kit_32_v3"
23+
"variant": "heltec_wifi_kit_32_V3"
2524
},
2625
"connectivity": [
2726
"wifi",

boards/heltec_wireless_stick_lite.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
{
22
"build": {
3-
"arduino":{
4-
"ldscript": "esp32_out.ld"
5-
},
63
"core": "esp32",
74
"extra_flags": "-DARDUINO_HELTEC_WIRELESS_STICK_LITE",
85
"f_cpu": "240000000L",
9-
"f_flash": "40000000L",
6+
"f_flash": "80000000L",
107
"flash_mode": "dio",
118
"mcu": "esp32",
129
"variant": "heltec_wireless_stick_lite"

boards/rymcu-esp32-s3-devkitc-1.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"partitions": "default_8MB.csv"
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+
"-DBOARD_HAS_PSRAM"
13+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"hwids": [
18+
[
19+
"0x303A",
20+
"0x1001"
21+
]
22+
],
23+
"mcu": "esp32s3",
24+
"variant": "esp32s3"
25+
},
26+
"connectivity": [
27+
"bluetooth",
28+
"wifi"
29+
],
30+
"debug": {
31+
"default_tool": "esp-builtin",
32+
"onboard_tools": [
33+
"esp-builtin"
34+
],
35+
"openocd_target": "esp32s3.cfg"
36+
},
37+
"frameworks": [
38+
"arduino",
39+
"espidf"
40+
],
41+
"name": "RYMCU ESP32-S3-DevKitC-1-N8R2 (8 MB QD, 2 MB PSRAM)",
42+
"upload": {
43+
"flash_size": "8MB",
44+
"maximum_ram_size": 327680,
45+
"maximum_size": 8388608,
46+
"require_upload_port": true,
47+
"speed": 460800
48+
},
49+
"url": "https://rymcu.com/products",
50+
"vendor": "RYMCU"
51+
}

boards/seeed_xiao_esp32c6.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"build": {
3+
"core": "esp32",
4+
"extra_flags": [
5+
"-DARDUINO_XIAO_ESP32C6",
6+
"-DARDUINO_USB_MODE=1",
7+
"-DARDUINO_USB_CDC_ON_BOOT=1"
8+
],
9+
"f_cpu": "160000000L",
10+
"f_flash": "80000000L",
11+
"flash_mode": "qio",
12+
"hwids": [
13+
[
14+
"0x2886",
15+
"0x0046"
16+
],
17+
[
18+
"0x303a",
19+
"0x1001"
20+
]
21+
],
22+
"mcu": "esp32c6",
23+
"variant": "XIAO_ESP32C6"
24+
},
25+
"connectivity": [
26+
"wifi",
27+
"bluetooth",
28+
"zigbee",
29+
"thread"
30+
],
31+
"debug": {
32+
"openocd_target": "esp32c6.cfg"
33+
},
34+
"frameworks": [
35+
"arduino",
36+
"espidf"
37+
],
38+
"name": "Seeed Studio XIAO ESP32C6",
39+
"upload": {
40+
"flash_size": "4MB",
41+
"maximum_ram_size": 327680,
42+
"maximum_size": 4194304,
43+
"require_upload_port": true,
44+
"speed": 460800
45+
},
46+
"url": "https://wiki.seeedstudio.com/XIAO_ESP32C6_Getting_Started/",
47+
"vendor": "Seeed Studio"
48+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"build": {
3+
"core": "esp32",
4+
"f_cpu": "160000000L",
5+
"f_flash": "80000000L",
6+
"flash_mode": "qio",
7+
"mcu": "esp32c6",
8+
"variant": "sparkfun_esp32c6_thing_plus",
9+
"extra_flags": [
10+
"-DARDUINO_ESP32C6_THING_PLUS",
11+
"-DARDUINO_USB_CDC_ON_BOOT=1",
12+
"-DARDUINO_USB_MODE=1"
13+
]
14+
},
15+
"connectivity": [
16+
"wifi",
17+
"bluetooth",
18+
"zigbee",
19+
"thread"
20+
],
21+
"debug": {
22+
"openocd_target": "esp32c6.cfg"
23+
},
24+
"frameworks": [
25+
"arduino",
26+
"espidf"
27+
],
28+
"name": "Sparkfun ESP32-C6 Thing Plus",
29+
"upload": {
30+
"flash_size": "16MB",
31+
"maximum_ram_size": 327680,
32+
"maximum_size": 16777216,
33+
"require_upload_port": true,
34+
"speed": 460800
35+
},
36+
"url": "https://www.sparkfun.com/products/22924",
37+
"vendor": "Sparkfun"
38+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"build": {
3+
"core": "esp32",
4+
"extra_flags": [
5+
"-DARDUINO_SFE_QWIIC_POCKET_ESP32C6",
6+
"-DARDUINO_USB_MODE=1",
7+
"-DARDUINO_USB_CDC_ON_BOOT=1"
8+
],
9+
"f_cpu": "160000000L",
10+
"f_flash": "80000000L",
11+
"flash_mode": "qio",
12+
"mcu": "esp32c6",
13+
"variant": "sparkfun_esp32c6_qwiic_pocket"
14+
},
15+
"connectivity": [
16+
"wifi",
17+
"bluetooth",
18+
"zigbee",
19+
"thread"
20+
],
21+
"debug": {
22+
"openocd_target": "esp32c6.cfg"
23+
},
24+
"frameworks": [
25+
"arduino",
26+
"espidf"
27+
],
28+
"name": "SparkFun ESP32-C6 Qwiic Pocket",
29+
"upload": {
30+
"flash_size": "4MB",
31+
"maximum_ram_size": 327680,
32+
"maximum_size": 4194304,
33+
"require_upload_port": true,
34+
"speed": 460800
35+
},
36+
"url": "https://www.sparkfun.com/products/22925",
37+
"vendor": "SparkFun"
38+
}

0 commit comments

Comments
 (0)