Skip to content

Commit a2e8011

Browse files
committed
esp32: Use ESP IDF v5.4.
Signed-off-by: Ihor Nehrutsa <[email protected]>
1 parent 30acb16 commit a2e8011

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ports/esp32/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ The steps to take are summarised below.
4646
To check out a copy of the IDF use git clone:
4747

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

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

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

5959
```bash
6060
$ cd esp-idf
61-
$ git checkout v5.2.2
61+
$ git checkout v5.4
6262
$ git submodule update --init --recursive
6363
```
6464

ports/esp32/tools/metrics_esp32.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import subprocess
3737
from dataclasses import dataclass
3838

39-
IDF_VERS = ("v5.2.2",)
39+
IDF_VERS = ("v5.4",)
4040

4141
BUILDS = (
4242
("ESP32_GENERIC", ""),

tools/ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function ci_cc3200_build {
135135
# ports/esp32
136136

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

140140
export IDF_CCACHE_ENABLE=1
141141

0 commit comments

Comments
 (0)