Skip to content

Commit

Permalink
esp32: Use ESP IDF v5.4.
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Nehrutsa <[email protected]>
  • Loading branch information
IhorNehrutsa committed Feb 16, 2025
1 parent 30acb16 commit a2e8011
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ports/esp32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ The steps to take are summarised below.
To check out a copy of the IDF use git clone:

```bash
$ git clone -b v5.2.2 --recursive https://github.com/espressif/esp-idf.git
$ git clone -b v5.4 --recursive https://github.com/espressif/esp-idf.git
```

You can replace `v5.2.2` with any other supported version.
You can replace `v5.4` with any other supported version.
(You don't need a full recursive clone; see the `ci_esp32_setup` function in
`tools/ci.sh` in this repository for more detailed set-up commands.)

Expand All @@ -58,7 +58,7 @@ MicroPython and update the submodules using:

```bash
$ cd esp-idf
$ git checkout v5.2.2
$ git checkout v5.4
$ git submodule update --init --recursive
```

Expand Down
2 changes: 1 addition & 1 deletion ports/esp32/tools/metrics_esp32.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import subprocess
from dataclasses import dataclass

IDF_VERS = ("v5.2.2",)
IDF_VERS = ("v5.4",)

BUILDS = (
("ESP32_GENERIC", ""),
Expand Down
2 changes: 1 addition & 1 deletion tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function ci_cc3200_build {
# ports/esp32

# GitHub tag of ESP-IDF to use for CI (note: must be a tag or a branch)
IDF_VER=v5.2.2
IDF_VER=v5.4

export IDF_CCACHE_ENABLE=1

Expand Down

0 comments on commit a2e8011

Please sign in to comment.