Skip to content

Commit 55ef559

Browse files
committed
Boards update
1 parent 95d72d4 commit 55ef559

16 files changed

+375
-15
lines changed

boards/adafruit_feather_esp32s3_reversetft.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino": {
4-
"partitions": "tinyuf2-partitions-4MB.csv",
4+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv",
56
"memory_type": "qio_qspi"
67
},
78
"core": "esp32",

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/airm2m_core_esp32c3.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
{
22
"build": {
3+
"arduino":{
4+
"ldscript": "esp32c3_out.ld"
5+
},
36
"core": "esp32",
47
"f_cpu": "160000000L",
58
"f_flash": "80000000L",
69
"flash_mode": "dio",
710
"extra_flags": [
811
"-DARDUINO_AirM2M_CORE_ESP32C3",
9-
"-DARDUINO_USB_MODE=1",
10-
"-DARDUINO_USB_CDC_ON_BOOT=1"
12+
"-DARDUINO_USB_MODE=1"
1113
],
1214
"mcu": "esp32c3",
1315
"variant": "AirM2M_CORE_ESP32C3"

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: 0 additions & 1 deletion
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",

boards/heltec_wifi_kit_32_v2.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": "esp32_out.ld",
5+
"partitions": "default_8MB.csv"
6+
},
7+
"core": "esp32",
8+
"extra_flags": "-DARDUINO_HELTEC_WIFI_KIT_32",
9+
"f_cpu": "240000000L",
10+
"f_flash": "40000000L",
11+
"flash_mode": "dio",
12+
"mcu": "esp32",
13+
"variant": "heltec_wifi_kit_32"
14+
},
15+
"connectivity": [
16+
"wifi",
17+
"bluetooth",
18+
"ethernet",
19+
"can"
20+
],
21+
"frameworks": [
22+
"arduino",
23+
"espidf"
24+
],
25+
"name": "Heltec WiFi Kit 32 (V2)",
26+
"upload": {
27+
"flash_size": "8MB",
28+
"maximum_ram_size": 327680,
29+
"maximum_size": 8388608,
30+
"require_upload_port": true,
31+
"speed": 460800
32+
},
33+
"url": "http://www.heltec.cn/project/wifi-kit-32/?lang=en",
34+
"vendor": "Heltec Automation"
35+
}

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"

0 commit comments

Comments
 (0)