Skip to content

Commit 989bfd3

Browse files
authored
Merge branch 'develop' into sophisticated_shorten
2 parents f33bee7 + 93cfe37 commit 989bfd3

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Espressif Systems is a privately held, fabless semiconductor company renowned fo
2020
1. Setup new VSCode pioarduino project.
2121
1. Configure a platform option in platformio.ini file:
2222

23+
# Documentation
24+
[pioarduino Wiki](https://deepwiki.com/pioarduino/platform-espressif32)
25+
The Wiki is AI generated and insane detailed and accurate.
26+
2327
### Stable Arduino
2428
currently espressif Arduino 3.2.0 and IDF 5.4.1
2529

boards/esp32-s3-devkitc1-n16r2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"platforms": [
4343
"espressif32"
4444
],
45-
"name": "Espressif ESP32-S3-DevKitC-1-N8R8 (16 MB Flash Quad, 2 MB PSRAM Quad)",
45+
"name": "Espressif ESP32-S3-DevKitC-1-N16R2 (16 MB Flash Quad, 2 MB PSRAM Quad)",
4646
"upload": {
4747
"flash_size": "8MB",
4848
"maximum_ram_size": 327680,

boards/esp32-s3-devkitc1-n4r2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"platforms": [
4343
"espressif32"
4444
],
45-
"name": "Espressif ESP32-S3-DevKitC-1-N8R8 (4 MB Flash Quad, 2 MB PSRAM Quad)",
45+
"name": "Espressif ESP32-S3-DevKitC-1-N4R2 (4 MB Flash Quad, 2 MB PSRAM Quad)",
4646
"upload": {
4747
"flash_size": "8MB",
4848
"maximum_ram_size": 327680,

boards/esp32-s3-devkitc1-n4r8.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"platforms": [
4343
"espressif32"
4444
],
45-
"name": "Espressif ESP32-S3-DevKitC-1-N8R8 (4 MB Flash Quad, 8 MB PSRAM Octal)",
45+
"name": "Espressif ESP32-S3-DevKitC-1-N4R8 (4 MB Flash Quad, 8 MB PSRAM Octal)",
4646
"upload": {
4747
"flash_size": "8MB",
4848
"maximum_ram_size": 327680,

boards/esp32-s3-devkitc1-n8r2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"platforms": [
4343
"espressif32"
4444
],
45-
"name": "Espressif ESP32-S3-DevKitC-1-N8R8 (8 MB Flash Quad, 2 MB PSRAM quad)",
45+
"name": "Espressif ESP32-S3-DevKitC-1-N8R2 (8 MB Flash Quad, 2 MB PSRAM quad)",
4646
"upload": {
4747
"flash_size": "8MB",
4848
"maximum_ram_size": 327680,

builder/frameworks/espidf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ def _get_installed_standard_pip_packages():
8989
"wheel": ">=0.35.1",
9090
"rich-click": ">=1.8.6",
9191
"PyYAML": ">=6.0.2",
92+
"intelhex": ">=2.3.0",
93+
"rich": ">=14.0.0",
9294
"esp-idf-size": ">=1.6.1"
9395
}
9496

@@ -1845,7 +1847,6 @@ def get_python_exe():
18451847
"-DSDKCONFIG=" + SDKCONFIG_PATH,
18461848
]
18471849

1848-
18491850
# This will add the linker flag for the map file
18501851
extra_cmake_args.append(
18511852
f'-DCMAKE_EXE_LINKER_FLAGS=-Wl,-Map={os.path.join(BUILD_DIR, env.subst("$PROGNAME") + ".map")}'

platform.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"type": "framework",
5252
"optional": true,
5353
"owner": "pioarduino",
54-
"version": "https://github.com/pioarduino/esp-idf/releases/download/v5.4.1.250509/esp-idf-v5.4.1.zip"
54+
"version": "https://github.com/pioarduino/esp-idf/releases/download/v5.4.1.250529/esp-idf-v5.4.1.zip"
5555
},
5656
"toolchain-xtensa-esp-elf": {
5757
"type": "toolchain",
@@ -92,7 +92,7 @@
9292
"type": "uploader",
9393
"optional": false,
9494
"owner": "pioarduino",
95-
"version": "https://github.com/pioarduino/esptool/releases/download/v4.8.11/esptool.zip"
95+
"version": "https://github.com/pioarduino/esptool/releases/download/v5.0.0-dev1/esptool.zip"
9696
},
9797
"tl-install": {
9898
"type": "tool",

0 commit comments

Comments
 (0)