Skip to content

Commit

Permalink
Update the esp-idf version to v5.3 release. (#34622)
Browse files Browse the repository at this point in the history
  • Loading branch information
shripad621git authored Jul 30, 2024
1 parent 5512b02 commit a8ff6ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions docs/guides/esp32/setup_idf_chip.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ step.

### Install Prerequisites

- [Linux](https://docs.espressif.com/projects/esp-idf/en/v5.1.2/esp32/get-started/linux-macos-setup.html#for-linux-users)
- [macOS](https://docs.espressif.com/projects/esp-idf/en/v5.1.2/esp32/get-started/linux-macos-setup.html#for-macos-users)
- [Linux](https://docs.espressif.com/projects/esp-idf/en/v5.3/esp32/get-started/linux-macos-setup.html#for-linux-users)
- [macOS](https://docs.espressif.com/projects/esp-idf/en/v5.3/esp32/get-started/linux-macos-setup.html#for-macos-users)

### Get IDF v5.1.2

- Clone ESP-IDF [v5.1.2
release](https://github.com/espressif/esp-idf/releases/tag/v5.1.2
- Clone ESP-IDF [v5.3
release](https://github.com/espressif/esp-idf/releases/tag/v5.3

```
git clone -b v5.1.2 --recursive --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git
git clone -b v5.3 --recursive --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git
cd esp-idf
./install.sh
```
- To update an existing esp-idf toolchain to v5.1.2:
- To update an existing esp-idf toolchain to v5.3:
```
cd path/to/esp-idf
git fetch --depth 1 origin v5.1.2
git fetch --depth 1 origin v5.3
git reset --hard FETCH_HEAD
git submodule update --depth 1 --recursive --init
Expand Down
2 changes: 1 addition & 1 deletion integrations/docker/images/base/chip-build/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
66 : [Telink] Update Docker image (Zephyr update)
67 : [ESP32] Update esp-idf to v5.3
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN set -x \
&& : # last line

RUN set -x \
&& git clone --recursive -b v5.1.2 --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git /tmp/esp-idf \
&& git clone --recursive -b v5.3 --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git /tmp/esp-idf \
&& : # last line

FROM ghcr.io/project-chip/chip-build:${VERSION}
Expand Down

0 comments on commit a8ff6ef

Please sign in to comment.