diff options
author | IhorNehrutsa <ihor.nehrutsa@gmail.com> | 2025-02-16 12:58:50 +0200 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-05-16 14:02:39 +1000 |
commit | f48b9815671eb81e99339dc443fb20dca1c72e69 (patch) | |
tree | 2f45a47c8f3fb7ff06a4d71097604bac8186f315 /ports/esp32/tools/metrics_esp32.py | |
parent | e1ab04e8205f78bb3ed9d0368bc1bb013b1bdcf9 (diff) |
esp32: Update to use ESP-IDF v5.4.1.
This version of the IDF uses about 1KB more IRAM and 1KB more DRAM on most
boards, but 6.5KB more DRAM usage on the S3. It seems that's due to a lot
of small increases in many components.
Signed-off-by: Ihor Nehrutsa <Ihor.Nehrutsa@gmail.com>
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 5e65a78c9..9efaae63a 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.2.2",) +IDF_VERS = ("v5.4.1",) BUILDS = ( ("ESP32_GENERIC", ""), |