Skip to content

Commit 4d72e44

Browse files
committed
Merge branch 'release/v6.10.0'
2 parents 268f561 + 7513a72 commit 4d72e44

13 files changed

+408
-36
lines changed

boards/adafruit_feather_esp32s3_tft.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
"build": {
33
"arduino": {
44
"ldscript": "esp32s3_out.ld",
5-
"partitions": "partitions-4MB-tinyuf2.csv"
5+
"partitions": "partitions-4MB-tinyuf2.csv",
6+
"memory_type": "qio_qspi"
67
},
78
"core": "esp32",
89
"extra_flags": [
910
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3_TFT",
1011
"-DARDUINO_USB_CDC_ON_BOOT=1",
1112
"-DARDUINO_RUNNING_CORE=1",
12-
"-DARDUINO_EVENT_RUNNING_CORE=1"
13+
"-DARDUINO_EVENT_RUNNING_CORE=1",
14+
"-DBOARD_HAS_PSRAM"
1315
],
1416
"f_cpu": "240000000L",
1517
"f_flash": "80000000L",

boards/dfrobot_romeo_esp32s3.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"-DARDUINO_DFROBOT_ROMEO_ESP32S3",
1111
"-DARDUINO_USB_MODE=1",
1212
"-DARDUINO_RUNNING_CORE=1",
13-
"-DARDUINO_EVENT_RUNNING_CORE=1"
13+
"-DARDUINO_EVENT_RUNNING_CORE=1",
14+
"-DARDUINO_USB_CDC_ON_BOOT=1"
1415
],
1516
"f_cpu": "240000000L",
1617
"f_flash": "80000000L",

boards/freenove_esp32_s3_wroom.json

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

boards/freenove_esp32_wrover.json

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

boards/heltec_wireless_stick_lite.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"core": "esp32",
77
"extra_flags": "-DARDUINO_HELTEC_WIRELESS_STICK_LITE",
88
"f_cpu": "240000000L",
9-
"f_flash": "40000000L",
9+
"f_flash": "80000000L",
1010
"flash_mode": "dio",
1111
"mcu": "esp32",
1212
"variant": "heltec_wireless_stick_lite"

boards/lilygo-t3-s3.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"memory_type": "qio_qspi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_LILYGO_T3_S3_V1_X",
10+
"-DBOARD_HAS_PSRAM",
11+
"-DARDUINO_USB_CDC_ON_BOOT=1",
12+
"-DARDUINO_RUNNING_CORE=1",
13+
"-DARDUINO_EVENT_RUNNING_CORE=1",
14+
"-DARDUINO_USB_MODE=1"
15+
],
16+
"f_cpu": "240000000L",
17+
"f_flash": "80000000L",
18+
"flash_mode": "qio",
19+
"mcu": "esp32s3",
20+
"variant": "esp32s3"
21+
},
22+
"connectivity": [
23+
"bluetooth",
24+
"wifi"
25+
],
26+
"debug": {
27+
"openocd_target": "esp32s3.cfg"
28+
},
29+
"frameworks": [
30+
"arduino",
31+
"espidf"
32+
],
33+
"name": "LilyGo T3-S3",
34+
"upload": {
35+
"flash_size": "4MB",
36+
"maximum_ram_size": 327680,
37+
"maximum_size": 4194304,
38+
"use_1200bps_touch": true,
39+
"wait_for_upload_port": true,
40+
"require_upload_port": true,
41+
"speed": 460800
42+
},
43+
"url": "https://lilygo.cc/products/t3s3-v1-0",
44+
"vendor": "LilyGo"
45+
}

boards/rymcu-esp32-c3-devkitm-1.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"ldscript": "esp32c3_out.ld"
5+
},
6+
"core": "esp32",
7+
"f_cpu": "160000000L",
8+
"f_flash": "80000000L",
9+
"flash_mode": "qio",
10+
"extra_flags": "-DARDUINO_ESP32C3_DEV",
11+
"mcu": "esp32c3",
12+
"variant": "esp32c3"
13+
},
14+
"connectivity": [
15+
"wifi",
16+
"bluetooth"
17+
],
18+
"debug": {
19+
"openocd_target": "esp32c3.cfg"
20+
},
21+
"frameworks": [
22+
"arduino",
23+
"espidf"
24+
],
25+
"name": "RYMCU ESP32-C3-DevKitM-1",
26+
"upload": {
27+
"flash_size": "4MB",
28+
"maximum_ram_size": 327680,
29+
"maximum_size": 4194304,
30+
"require_upload_port": true,
31+
"speed": 460800
32+
},
33+
"url": "https://rymcu.com/products",
34+
"vendor": "RYMCU"
35+
}

boards/rymcu-esp32-devkitc.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_ESP32_DEV",
8+
"f_cpu": "240000000L",
9+
"f_flash": "40000000L",
10+
"flash_mode": "dio",
11+
"mcu": "esp32",
12+
"variant": "esp32"
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": "RYMCU ESP32-DevKitC",
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://rymcu.com/products",
36+
"vendor": "RYMCU"
37+
}

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

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

0 commit comments

Comments
 (0)