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 <IhorNehrutsa@gmail.com>
This commit is contained in:
parent
d0758d8a33
commit
4365edb810
|
@ -28,7 +28,7 @@ manage the ESP32 microcontroller, as well as a way to manage the required
|
||||||
build environment and toolchains needed to build the firmware.
|
build environment and toolchains needed to build the firmware.
|
||||||
|
|
||||||
The ESP-IDF changes quickly and MicroPython only supports certain versions.
|
The ESP-IDF changes quickly and MicroPython only supports certain versions.
|
||||||
Currently MicroPython supports only v5.0.2.
|
Currently MicroPython supports v5.0.4, v5.1.2.
|
||||||
|
|
||||||
To install the ESP-IDF the full instructions can be found at the
|
To install the ESP-IDF the full instructions can be found at the
|
||||||
[Espressif Getting Started guide](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html#installation-step-by-step).
|
[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.
|
||||||
To check out a copy of the IDF use git clone:
|
To check out a copy of the IDF use git clone:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone -b v5.0.2 --recursive https://github.com/espressif/esp-idf.git
|
$ git clone -b v5.0.4 --recursive https://github.com/espressif/esp-idf.git
|
||||||
```
|
```
|
||||||
|
|
||||||
You can replace `v5.0.2` with any other supported version.
|
You can replace `v5.0.4` with any other supported version.
|
||||||
(You don't need a full recursive clone; see the `ci_esp32_setup` function in
|
(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.)
|
`tools/ci.sh` in this repository for more detailed set-up commands.)
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ MicroPython and update the submodules using:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ cd esp-idf
|
$ cd esp-idf
|
||||||
$ git checkout v5.0.2
|
$ git checkout v5.0.4
|
||||||
$ git submodule update --init --recursive
|
$ git submodule update --init --recursive
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
espressif/mdns: "~1.1.0"
|
espressif/mdns: "~1.1.0"
|
||||||
idf:
|
idf:
|
||||||
version: ">=5.0.2"
|
version: ">=5.0.4"
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
espressif/mdns: "~1.1.0"
|
espressif/mdns: "~1.1.0"
|
||||||
idf:
|
idf:
|
||||||
version: ">=5.0.2"
|
version: ">=5.0.4"
|
||||||
|
|
|
@ -3,4 +3,4 @@ dependencies:
|
||||||
espressif/mdns: "~1.1.0"
|
espressif/mdns: "~1.1.0"
|
||||||
espressif/esp_tinyusb: "~1.0.0"
|
espressif/esp_tinyusb: "~1.0.0"
|
||||||
idf:
|
idf:
|
||||||
version: ">=5.0.2"
|
version: ">=5.0.4"
|
||||||
|
|
|
@ -3,4 +3,4 @@ dependencies:
|
||||||
espressif/mdns: "~1.1.0"
|
espressif/mdns: "~1.1.0"
|
||||||
espressif/esp_tinyusb: "~1.0.0"
|
espressif/esp_tinyusb: "~1.0.0"
|
||||||
idf:
|
idf:
|
||||||
version: ">=5.0.2"
|
version: ">=5.0.4"
|
||||||
|
|
|
@ -119,7 +119,7 @@ function ci_cc3200_build {
|
||||||
# ports/esp32
|
# ports/esp32
|
||||||
|
|
||||||
# GitHub tag of ESP-IDF to use for CI (note: must be a tag or a branch)
|
# GitHub tag of ESP-IDF to use for CI (note: must be a tag or a branch)
|
||||||
IDF_VER=v5.0.2
|
IDF_VER=v5.0.4
|
||||||
|
|
||||||
export IDF_CCACHE_ENABLE=1
|
export IDF_CCACHE_ENABLE=1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue