summaryrefslogtreecommitdiff
path: root/ports/esp32
diff options
context:
space:
mode:
authorAngus Gratton <angus@redyak.com.au>2024-07-23 11:57:13 +1000
committerDamien George <damien@micropython.org>2024-08-14 15:58:12 +1000
commitfbb02d3aeeaa9da082f3ccd411d8e164a526046e (patch)
tree2b06a36e2560d850dea862469903ee24ce201b34 /ports/esp32
parent35a056ad9c9374472adf3578f9d6f0bfd2734674 (diff)
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>
Diffstat (limited to 'ports/esp32')
-rw-r--r--ports/esp32/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/esp32/README.md b/ports/esp32/README.md
index 2e03c55d3..a04ad0c6e 100644
--- a/ports/esp32/README.md
+++ b/ports/esp32/README.md
@@ -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.
The ESP-IDF changes quickly and MicroPython only supports certain versions.
-Currently MicroPython supports v5.0.4, v5.0.5, v5.1.2, v5.2.0.
+Currently MicroPython supports v5.0.4, v5.0.5, v5.1.2, v5.2.0, v5.2.2.
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).
@@ -46,10 +46,10 @@ The steps to take are summarised below.
To check out a copy of the IDF use git clone:
```bash
-$ git clone -b v5.0.4 --recursive https://github.com/espressif/esp-idf.git
+$ git clone -b v5.2.2 --recursive https://github.com/espressif/esp-idf.git
```
-You can replace `v5.0.4` with any other supported version.
+You can replace `v5.2.2` with any other supported version.
(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.)
@@ -58,7 +58,7 @@ MicroPython and update the submodules using:
```bash
$ cd esp-idf
-$ git checkout v5.0.4
+$ git checkout v5.2.2
$ git submodule update --init --recursive
```