Skip to content

Commit 9c3e3b6

Browse files
committed
Update Arduino core to v2.0.6
Resolves #937
1 parent fee4b73 commit 9c3e3b6

File tree

7 files changed

+264
-7
lines changed

7 files changed

+264
-7
lines changed

boards/bpi_leaf_s3.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "default_8MB.csv",
6+
"memory_type": "qio_qspi"
7+
},
8+
"core": "esp32",
9+
"extra_flags": [
10+
"-DBOARD_HAS_PSRAM",
11+
"-DARDUINO_BPI_LEAF_S3",
12+
"-DARDUINO_USB_CDC_ON_BOOT=1"
13+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"hwids": [
18+
[
19+
"0x303A",
20+
"0x80DF"
21+
]
22+
],
23+
"mcu": "esp32s3",
24+
"variant": "bpi_leaf_s3"
25+
},
26+
"connectivity": [
27+
"wifi"
28+
],
29+
"debug": {
30+
"openocd_target": "esp32s3.cfg"
31+
},
32+
"frameworks": [
33+
"arduino",
34+
"espidf"
35+
],
36+
"name": "BPI-Leaf-S3",
37+
"upload": {
38+
"flash_size": "8MB",
39+
"maximum_ram_size": 327680,
40+
"maximum_size": 8388608,
41+
"use_1200bps_touch": true,
42+
"wait_for_upload_port": true,
43+
"require_upload_port": true,
44+
"speed": 460800
45+
},
46+
"url": "https://wiki.banana-pi.org/BPI-Leaf-S3",
47+
"vendor": "BPI Tech"
48+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"memory_type": "qio_opi",
6+
"partitions": "partitions-8MB-tinyuf2.csv"
7+
},
8+
"core": "esp32",
9+
"extra_flags": [
10+
"-DARDUINO_CYTRON_MAKER_FEATHER_AIOT_S3",
11+
"-DARDUINO_USB_CDC_ON_BOOT=1",
12+
"-DBOARD_HAS_PSRAM",
13+
"-DARDUINO_RUNNING_CORE=1",
14+
"-DARDUINO_EVENT_RUNNING_CORE=1"
15+
],
16+
"f_cpu": "240000000L",
17+
"f_flash": "80000000L",
18+
"flash_mode": "qio",
19+
"hwids": [
20+
[
21+
"0x303A",
22+
"0x80F8"
23+
]
24+
],
25+
"mcu": "esp32s3",
26+
"variant": "cytron_maker_feather_aiot_s3"
27+
},
28+
"connectivity": [
29+
"wifi"
30+
],
31+
"debug": {
32+
"openocd_target": "esp32s3.cfg"
33+
},
34+
"frameworks": [
35+
"arduino",
36+
"espidf"
37+
],
38+
"name": "Cytron Maker Feather AIoT S3",
39+
"upload": {
40+
"arduino": {
41+
"flash_extra_images": [
42+
[
43+
"0x410000",
44+
"variants/cytron_maker_feather_aiot_s3/tinyuf2.bin"
45+
]
46+
]
47+
},
48+
"flash_size": "8MB",
49+
"maximum_ram_size": 327680,
50+
"maximum_size": 8388608,
51+
"require_upload_port": true,
52+
"speed": 460800
53+
},
54+
"url": "https://sg.cytron.io/c-development-tools/c-maker-series/p-v-maker-feather-aiot-s3-simplifying-aiot-with-esp32",
55+
"vendor": "Cytron Technologies"
56+
}

boards/deneyapkart1Av2.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"memory_type": "qio_qspi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_DYDK1Av2",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "240000000L",
13+
"f_flash": "80000000L",
14+
"flash_mode": "qio",
15+
"hwids": [
16+
[
17+
"0x303A",
18+
"0x8147"
19+
]
20+
],
21+
"mcu": "esp32s3",
22+
"variant": "deneyapkart1Av2"
23+
},
24+
"connectivity": [
25+
"wifi"
26+
],
27+
"debug": {
28+
"openocd_target": "esp32s3.cfg"
29+
},
30+
"frameworks": [
31+
"arduino",
32+
"espidf"
33+
],
34+
"name": "Deneyap Kart 1A v2",
35+
"upload": {
36+
"flash_size": "4MB",
37+
"maximum_ram_size": 327680,
38+
"maximum_size": 4194304,
39+
"use_1200bps_touch": true,
40+
"wait_for_upload_port": true,
41+
"require_upload_port": true,
42+
"speed": 460800
43+
},
44+
"url": "https://wiki.banana-pi.org/BPI-Leaf-S3",
45+
"vendor": "Deneyap"
46+
}

boards/deneyapmini.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@
44
"ldscript": "esp32s2_out.ld"
55
},
66
"core": "esp32",
7-
"extra_flags": "-DARDUINO_DYM",
7+
"extra_flags": [
8+
"-DARDUINO_DYM",
9+
"-DARDUINO_USB_CDC_ON_BOOT=1"
10+
],
811
"f_cpu": "240000000L",
912
"f_flash": "80000000L",
1013
"flash_mode": "qio",
1114
"hwids": [
1215
[
1316
"0x303A",
14-
"0x0002"
17+
"0x8141"
1518
]
1619
],
1720
"mcu": "esp32s2",

boards/deneyapminiv2.json

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": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": "-",
8+
"extra_flags": [
9+
"-DBOARD_HAS_PSRAM",
10+
"-DARDUINO_DYMv2",
11+
"-DARDUINO_USB_CDC_ON_BOOT=1"
12+
],
13+
"f_cpu": "240000000L",
14+
"f_flash": "80000000L",
15+
"flash_mode": "qio",
16+
"hwids": [
17+
[
18+
"0x303A",
19+
"0x8144"
20+
]
21+
],
22+
"mcu": "esp32s2",
23+
"variant": "deneyapminiv2"
24+
},
25+
"connectivity": [
26+
"wifi",
27+
"bluetooth",
28+
"ethernet"
29+
],
30+
"debug": {
31+
"openocd_target": "esp32s2.cfg"
32+
},
33+
"frameworks": [
34+
"arduino",
35+
"espidf"
36+
],
37+
"name": "Deneyap Mini v2",
38+
"upload": {
39+
"flash_size": "4MB",
40+
"maximum_ram_size": 327680,
41+
"maximum_size": 4194304,
42+
"use_1200bps_touch": true,
43+
"wait_for_upload_port": true,
44+
"require_upload_port": true,
45+
"speed": 460800
46+
},
47+
"url": "https://deneyapkart.org/magaza/urun-deneyap-kart-mini.html",
48+
"vendor": "Deneyap"
49+
}

boards/redpill_esp32s3.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+
"memory_type": "qio_qspi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_REDPILL_ESP32S3",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1",
11+
"-DBOARD_HAS_PSRAM",
12+
"-DARDUINO_RUNNING_CORE=1",
13+
"-DARDUINO_EVENT_RUNNING_CORE=1"
14+
],
15+
"f_cpu": "240000000L",
16+
"f_flash": "80000000L",
17+
"flash_mode": "qio",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x80F8"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "redpill_esp32s3"
26+
},
27+
"connectivity": [
28+
"wifi"
29+
],
30+
"debug": {
31+
"openocd_target": "esp32s3.cfg"
32+
},
33+
"frameworks": [
34+
"arduino",
35+
"espidf"
36+
],
37+
"name": "Munich Labs RedPill ESP32-S3",
38+
"upload": {
39+
"arduino": {
40+
"flash_extra_images": [
41+
[
42+
"0x410000",
43+
"variants/redpill_esp32s3/tinyuf2.bin"
44+
]
45+
]
46+
},
47+
"flash_size": "8MB",
48+
"maximum_ram_size": 327680,
49+
"maximum_size": 8388608,
50+
"require_upload_port": true,
51+
"speed": 460800
52+
},
53+
"url": "https://munich-labs.com/index.php/redpill-esp32-s3/",
54+
"vendor": "Munich Labs"
55+
}

platform.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@
3636
"toolchain-xtensa-esp32": {
3737
"type": "toolchain",
3838
"owner": "espressif",
39-
"version": "8.4.0+2021r2-patch3"
39+
"version": "8.4.0+2021r2-patch5"
4040
},
4141
"toolchain-xtensa-esp32s2": {
4242
"type": "toolchain",
4343
"optional": true,
4444
"owner": "espressif",
45-
"version": "8.4.0+2021r2-patch3"
45+
"version": "8.4.0+2021r2-patch5"
4646
},
4747
"toolchain-xtensa-esp32s3": {
4848
"type": "toolchain",
4949
"optional": true,
5050
"owner": "espressif",
51-
"version": "8.4.0+2021r2-patch3"
51+
"version": "8.4.0+2021r2-patch5"
5252
},
5353
"toolchain-riscv32-esp": {
5454
"type": "toolchain",
5555
"optional": true,
5656
"owner": "espressif",
57-
"version": "8.4.0+2021r2-patch3"
57+
"version": "8.4.0+2021r2-patch5"
5858
},
5959
"toolchain-esp32ulp": {
6060
"type": "toolchain",
@@ -72,7 +72,7 @@
7272
"type": "framework",
7373
"optional": true,
7474
"owner": "platformio",
75-
"version": "~3.20005.0"
75+
"version": "~3.20006.0"
7676
},
7777
"framework-arduino-mbcwb": {
7878
"type": "framework",

0 commit comments

Comments
 (0)