Skip to content

Commit e050c4b

Browse files
authored
Tasmota Platform 2024.08.11
1 parent 352d5b2 commit e050c4b

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Espressif Systems is a privately held fabless semiconductor company. They provid
2020
Support for the ESP32/ESP32solo1, ESP32C2, ESP32C3, ESP32C6, ESP32S2, ESP32S3 and ESP32-H2
2121
```
2222
[platformio]
23-
platform = https://github.com/tasmota/platform-espressif32/releases/download/2024.08.10/platform-espressif32.zip
23+
platform = https://github.com/tasmota/platform-espressif32/releases/download/2024.08.11/platform-espressif32.zip
2424
framework = arduino
2525
```
2626
to use the ESP32 Solo1 Arduino framework add in your env
@@ -34,3 +34,4 @@ The released frameworks can be downloaded [here](https://github.com/tasmota/ardu
3434
# Configuration
3535

3636
Please navigate to [documentation](http://docs.platformio.org/page/platforms/espressif32.html).
37+

builder/frameworks/espidf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,7 @@ def _skip_prj_source_files(node):
16701670
(
16711671
board.get(
16721672
"upload.bootloader_offset",
1673-
"0x0" if mcu in ("esp32c2", "esp32c3", "esp32c6", "esp32s3", "esp32h2") else ("0x2000" if mcu in ("esp32p4") else "0x1000"),
1673+
"0x0" if mcu in ["esp32c2", "esp32c3", "esp32c6", "esp32s3", "esp32h2"] else ("0x2000" if mcu in ["esp32p4"] else "0x1000"),
16741674
),
16751675
os.path.join("$BUILD_DIR", "bootloader.bin"),
16761676
),

platform.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "git",
1919
"url": "https://github.com/tasmota/platform-espressif32.git"
2020
},
21-
"version": "2024.08.10",
21+
"version": "2024.08.11",
2222
"frameworks": {
2323
"arduino": {
2424
"script": "builder/frameworks/arduino.py"
@@ -33,25 +33,25 @@
3333
"type": "framework",
3434
"optional": true,
3535
"owner": "tasmota",
36-
"version": "https://github.com/tasmota/arduino-esp32/releases/download/3.0.4.240802/framework-arduinoespressif32.zip"
36+
"version": "https://github.com/tasmota/arduino-esp32/releases/download/3.0.4.240826/framework-arduinoespressif32.zip"
3737
},
3838
"framework-arduino-solo1": {
3939
"type": "framework",
4040
"optional": true,
4141
"owner": "tasmota",
42-
"version": "https://github.com/tasmota/arduino-esp32/releases/download/3.0.4.240802/framework-arduinoespressif32-solo1.zip"
42+
"version": "https://github.com/tasmota/arduino-esp32/releases/download/3.0.4.240826/framework-arduinoespressif32-solo1.zip"
4343
},
4444
"framework-arduino-ITEAD": {
4545
"type": "framework",
4646
"optional": true,
4747
"owner": "tasmota",
48-
"version": "https://github.com/tasmota/arduino-esp32/releases/download/3.0.4.240802/framework-arduinoespressif32-ITEAD.zip"
48+
"version": "https://github.com/tasmota/arduino-esp32/releases/download/3.0.4.240826/framework-arduinoespressif32-ITEAD.zip"
4949
},
5050
"framework-espidf": {
5151
"type": "framework",
5252
"optional": true,
5353
"owner": "tasmota",
54-
"version": "https://github.com/tasmota/esp-idf/releases/download/v5.1.4.240801/esp-idf-v5.1.4.zip"
54+
"version": "https://github.com/tasmota/esp-idf/releases/download/v5.1.4.240822/esp-idf-v5.1.4.zip"
5555
},
5656
"toolchain-xtensa-esp32": {
5757
"type": "toolchain",

0 commit comments

Comments
 (0)