Skip to content

Commit 4365edb

Browse files
IhorNehrutsadpgeorge
IhorNehrutsa
authored andcommitted
esp32: Change minimum supported IDF version to v5.0.4.
Also, IDF v5.1.2 is now supported, just not used by default. IDF v5.0.2 still builds but we cannot guarantee continued support for this version moving forward. Signed-off-by: IhorNehrutsa <[email protected]>
1 parent d0758d8 commit 4365edb

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

ports/esp32/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ manage the ESP32 microcontroller, as well as a way to manage the required
2828
build environment and toolchains needed to build the firmware.
2929

3030
The ESP-IDF changes quickly and MicroPython only supports certain versions.
31-
Currently MicroPython supports only v5.0.2.
31+
Currently MicroPython supports v5.0.4, v5.1.2.
3232

3333
To install the ESP-IDF the full instructions can be found at the
3434
[Espressif Getting Started guide](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html#installation-step-by-step).
@@ -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.0.2 --recursive https://github.com/espressif/esp-idf.git
49+
$ git clone -b v5.0.4 --recursive https://github.com/espressif/esp-idf.git
5050
```
5151

52-
You can replace `v5.0.2` with any other supported version.
52+
You can replace `v5.0.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.0.2
61+
$ git checkout v5.0.4
6262
$ git submodule update --init --recursive
6363
```
6464

ports/esp32/main_esp32/idf_component.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
dependencies:
33
espressif/mdns: "~1.1.0"
44
idf:
5-
version: ">=5.0.2"
5+
version: ">=5.0.4"

ports/esp32/main_esp32c3/idf_component.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
dependencies:
33
espressif/mdns: "~1.1.0"
44
idf:
5-
version: ">=5.0.2"
5+
version: ">=5.0.4"

ports/esp32/main_esp32s2/idf_component.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dependencies:
33
espressif/mdns: "~1.1.0"
44
espressif/esp_tinyusb: "~1.0.0"
55
idf:
6-
version: ">=5.0.2"
6+
version: ">=5.0.4"

ports/esp32/main_esp32s3/idf_component.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dependencies:
33
espressif/mdns: "~1.1.0"
44
espressif/esp_tinyusb: "~1.0.0"
55
idf:
6-
version: ">=5.0.2"
6+
version: ">=5.0.4"

tools/ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function ci_cc3200_build {
119119
# ports/esp32
120120

121121
# GitHub tag of ESP-IDF to use for CI (note: must be a tag or a branch)
122-
IDF_VER=v5.0.2
122+
IDF_VER=v5.0.4
123123

124124
export IDF_CCACHE_ENABLE=1
125125

0 commit comments

Comments
 (0)