Skip to content

Commit 103b373

Browse files
authored
Merge branch '51.03.06' into develop
2 parents 0efff91 + 33907b2 commit 103b373

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

platform.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"RISC-V"
1313
],
1414
"engines": {
15-
"platformio": ">=6.1.15"
15+
"platformio": ">=6.1.16"
1616
},
1717
"repository": {
1818
"type": "git",
1919
"url": "https://github.com/pioarduino/platform-espressif32.git"
2020
},
21-
"version": "51.03.04+develop",
21+
"version": "51.03.06",
2222
"frameworks": {
2323
"arduino": {
2424
"script": "builder/frameworks/arduino.py"
@@ -33,13 +33,13 @@
3333
"type": "framework",
3434
"optional": true,
3535
"owner": "espressif",
36-
"version": "https://github.com/espressif/arduino-esp32/archive/refs/heads/master.zip"
36+
"version": "https://github.com/espressif/arduino-esp32/releases/download/3.0.6/esp32-3.0.6.zip"
3737
},
3838
"framework-arduinoespressif32-libs": {
3939
"type": "framework",
4040
"optional": true,
4141
"owner": "espressif",
42-
"version": ""
42+
"version": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip"
4343
},
4444
"framework-espidf": {
4545
"type": "framework",
@@ -92,7 +92,7 @@
9292
"tool-esptoolpy": {
9393
"type": "uploader",
9494
"owner": "pioarduino",
95-
"version": "https://github.com/pioarduino/esptool/releases/download/v4.8.0/esptool.zip"
95+
"version": "https://github.com/pioarduino/esptool/releases/download/v4.8.1/esptool.zip"
9696
},
9797
"tool-dfuutil-arduino": {
9898
"type": "uploader",

platform.py

-5
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ def configure_default_packages(self, variables, targets):
4545
if "arduino" in frameworks:
4646
self.packages["framework-arduinoespressif32"]["optional"] = False
4747
self.packages["framework-arduinoespressif32-libs"]["optional"] = False
48-
# use latest espressif Arduino libs
49-
URL = "https://raw.githubusercontent.com/espressif/arduino-esp32/master/package/package_esp32_index.template.json"
50-
packjdata = requests.get(URL).json()
51-
dyn_lib_url = packjdata['packages'][0]['tools'][0]['systems'][0]['url']
52-
self.packages["framework-arduinoespressif32-libs"]["version"] = dyn_lib_url
5348

5449
if "buildfs" in targets:
5550
filesystem = variables.get("board_build.filesystem", "littlefs")

0 commit comments

Comments
 (0)