Skip to content

Commit 565f024

Browse files
authored
Arduino core 3.2.0
2 parents dd8ea2d + 4b1fe0e commit 565f024

31 files changed

+913
-25
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
python -m pip install --upgrade pip
5252
pip install wheel
53-
pip install -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.17b2.zip
53+
pip install -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
5454
pio pkg install --global --platform file://.
5555
- name: git clone Tasmota and add to examples
5656
run: |

.github/workflows/release_zips.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Create zip file with recursive source clone for release
33
on:
44
push:
55
tags:
6-
- 53*
6+
- 54*
77

88
jobs:
99
release_zips:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ESP32 is a series of low-cost, low-power system on a chip microcontrollers with
2020
1. Configure a platform option in platformio.ini file:
2121

2222
### Stable Arduino
23-
currently espressif Arduino 3.1.3 and IDF 5.3.2.250210
23+
currently espressif Arduino 3.2.0 and IDF 5.4.1
2424

2525
```ini
2626
[env:stable]
@@ -39,8 +39,8 @@ board = ...
3939
...
4040
```
4141

42-
### pioarduino only feature
43-
ESP32-solo1 and ESP32-C2 support via **Hybrid compile**
42+
### ESP32-solo1 and ESP32-C2 Arduino support (with pioarduino only feature: *Hybrid compile*)
43+
Example configuration:
4444

4545
```ini
4646
[env:esp32solo1]

boards/bpi-centi-s3.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+
"partitions": "default_8MB.csv",
5+
"memory_type": "qio_qspi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DBOARD_HAS_PSRAM",
10+
"-DARDUINO_BPI_CENTI_S3",
11+
"-DARDUINO_USB_MODE=1",
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+
"bluetooth",
28+
"wifi"
29+
],
30+
"debug": {
31+
"openocd_target": "esp32s3.cfg"
32+
},
33+
"frameworks": [
34+
"arduino",
35+
"espidf"
36+
],
37+
"platforms" : [
38+
"espressif32"
39+
],
40+
"name": "BPI-Centi-S3",
41+
"upload": {
42+
"flash_size": "8MB",
43+
"maximum_ram_size": 327680,
44+
"maximum_size": 8388608,
45+
"use_1200bps_touch": true,
46+
"wait_for_upload_port": true,
47+
"require_upload_port": true,
48+
"speed": 921600
49+
},
50+
"url": "https://wiki.banana-pi.org/BPI-Leaf-S3",
51+
"vendor": "BPI Tech"
52+
}

boards/esp32-s3-devkitc-1-n32r8v.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+
"partitions": "default_32MB.csv",
5+
"memory_type": "opi_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+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "opi",
17+
"psram_type": "opi",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x1001"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "esp32s3"
26+
},
27+
"connectivity": [
28+
"wifi",
29+
"bluetooth"
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": "Espressif ESP32-S3-DevKitC-1-N32R8V (32 MB Flash Octal, 8 MB PSRAM Octal)",
43+
"upload": {
44+
"flash_size": "32MB",
45+
"maximum_ram_size": 327680,
46+
"maximum_size": 33554432,
47+
"require_upload_port": true,
48+
"speed": 921600
49+
},
50+
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html",
51+
"vendor": "Espressif"
52+
}

boards/esp32-s3-devkitc1-n16r16.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+
"partitions": "default_16MB.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+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"psram_type": "opi",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x1001"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "esp32s3"
26+
},
27+
"connectivity": [
28+
"wifi",
29+
"bluetooth"
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+
"platforms": [
43+
"espressif32"
44+
],
45+
"name": "Espressif ESP32-S3-DevKitC-1-N16R8V (16 MB Flash Quad, 16 MB PSRAM Octal)",
46+
"upload": {
47+
"flash_size": "16MB",
48+
"maximum_ram_size": 327680,
49+
"maximum_size": 16777216,
50+
"require_upload_port": true,
51+
"speed": 921600
52+
},
53+
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html",
54+
"vendor": "Espressif"
55+
}

boards/esp32-s3-devkitc1-n16r2.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+
"partitions": "default_16MB.csv",
5+
"memory_type": "qio_qspi"
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+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"psram_type": "qio",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x1001"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "esp32s3"
26+
},
27+
"connectivity": [
28+
"wifi",
29+
"bluetooth"
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+
"platforms": [
43+
"espressif32"
44+
],
45+
"name": "Espressif ESP32-S3-DevKitC-1-N8R8 (16 MB Flash Quad, 2 MB PSRAM Quad)",
46+
"upload": {
47+
"flash_size": "8MB",
48+
"maximum_ram_size": 327680,
49+
"maximum_size": 16777216,
50+
"require_upload_port": true,
51+
"speed": 921600
52+
},
53+
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html",
54+
"vendor": "Espressif"
55+
}

boards/esp32-s3-devkitc1-n16r8.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+
"partitions": "default_16MB.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+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"psram_type": "opi",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x1001"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "esp32s3"
26+
},
27+
"connectivity": [
28+
"wifi",
29+
"bluetooth"
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+
"platforms": [
43+
"espressif32"
44+
],
45+
"name": "Espressif ESP32-S3-DevKitC-1-N16R8V (16 MB Flash Quad, 8 MB PSRAM Octal)",
46+
"upload": {
47+
"flash_size": "16MB",
48+
"maximum_ram_size": 327680,
49+
"maximum_size": 16777216,
50+
"require_upload_port": true,
51+
"speed": 921600
52+
},
53+
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html",
54+
"vendor": "Espressif"
55+
}

boards/esp32-s3-devkitc1-n4r2.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+
"partitions": "default_4MB.csv",
5+
"memory_type": "qio_qspi"
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+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"psram_type": "qio",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x1001"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "esp32s3"
26+
},
27+
"connectivity": [
28+
"wifi",
29+
"bluetooth"
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+
"platforms": [
43+
"espressif32"
44+
],
45+
"name": "Espressif ESP32-S3-DevKitC-1-N8R8 (4 MB Flash Quad, 2 MB PSRAM Quad)",
46+
"upload": {
47+
"flash_size": "8MB",
48+
"maximum_ram_size": 327680,
49+
"maximum_size": 4194304,
50+
"require_upload_port": true,
51+
"speed": 921600
52+
},
53+
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html",
54+
"vendor": "Espressif"
55+
}

0 commit comments

Comments
 (0)