diff options
author | Damien George <damien@micropython.org> | 2025-07-20 00:19:08 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-07-23 12:52:49 +1000 |
commit | 10ef3e4ac2767b68f746f0ebb995672076eee67d (patch) | |
tree | 20c37af312f3c2da3c5d546627f96b43f8e28620 /ports/esp32/tools/metrics_esp32.py | |
parent | 1ab1f857b3eef3608cebb623526301621086faa1 (diff) |
esp32: Update to use ESP-IDF v5.4.2.
This is a patch release of the IDF. Comparing with 5.4.1, firmware size is
up by about 1.5k on ESP32 and 9k on ESP32-S3. But IRAM usage (of the IDF)
is down by about 500 byte on ESP32 and DRAM usage is down by about 20k on
ESP32 and 10k on ESP32-S3.
Testing on ESP32, ESP32-S2, ESP32-S3 and ESP32-C3 shows no regressions,
except in BLE MTU ordering (the MTU exchange event occuring before the
connect event).
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/esp32/tools/metrics_esp32.py')
-rwxr-xr-x | ports/esp32/tools/metrics_esp32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/tools/metrics_esp32.py b/ports/esp32/tools/metrics_esp32.py index 9efaae63a..70f049c3b 100755 --- a/ports/esp32/tools/metrics_esp32.py +++ b/ports/esp32/tools/metrics_esp32.py @@ -37,7 +37,7 @@ import sys import subprocess from dataclasses import dataclass -IDF_VERS = ("v5.4.1",) +IDF_VERS = ("v5.4.2",) BUILDS = ( ("ESP32_GENERIC", ""), |