8000 esp32: Add support for ESP-IDF v5.2.2. · micropython/micropython@fbb02d3 · GitHub
[go: up one dir, main page]

Skip to content

Commit fbb02d3

Browse files
projectgusdpgeorge
authored andcommitted
esp32: Add support for ESP-IDF v5.2.2.
Keeping older versions, however if the update goes well then these may be dropped in the future. Signed-off-by: Angus Gratton <angus@redyak.com.au>
1 parent 35a056a commit fbb02d3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ports/esp32/README.md

Lines changed: 4 additions & 4 deletions
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 v5.0.4, v5.0.5, v5.1.2, v5.2.0.
31+
Currently MicroPython supports v5.0.4, v5.0.5, v5.1.2, v5.2.0, v5.2.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.4 --recursive https://github.com/espressif/esp-idf.git
49+
$ git clone -b v5.2.2 --recursive https://github.com/espressif/esp-idf.git
5050
```
5151

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

tools/ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function ci_cc3200_build {
116116
# ports/esp32
117117

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

121121
export IDF_CCACHE_ENABLE=1
122122

0 commit comments

Comments
 (0)
0