File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ manage the ESP32 microcontroller, as well as a way to manage the required
2828build environment and toolchains needed to build the firmware.
2929
3030The 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.2.2 .
3232
3333To 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.
4646To 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
Original file line number Diff line number Diff 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
121121export IDF_CCACHE_ENABLE=1
122122
You can’t perform that action at this time.
0 commit comments