Skip to content

Commit 8d6d412

Browse files
Update container (#259)
* feat: Update nigthly version * feat: Update esp-idf version
1 parent c0117c5 commit 8d6d412

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ENV LANG=C.UTF-8
77
# Arguments
88
ARG CONTAINER_USER=esp
99
ARG CONTAINER_GROUP=esp
10-
ARG NIGHTLY_VERSION=nightly-2023-11-14
11-
ARG ESP_IDF_VERSION=v5.1.2
10+
ARG NIGHTLY_VERSION=nightly-2024-06-30
11+
ARG ESP_IDF_VERSION=v5.2.2
1212
ARG ESP_BOARD=esp32c3
1313

1414
# Install dependencies

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// "build": {
77
// "dockerfile": "Dockerfile",
88
// "args": {
9-
// "NIGHTLY_VERSION": "nightly-2023-11-14"
9+
// "NIGHTLY_VERSION": "nightly-2024-06-30"
1010
// }
1111
// },
1212
"customizations": {

book/src/02_2_software.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Follow the steps below for a default installation of the ESP32-C3 platform tooli
88

99
✅ If you haven't got Rust on your computer, obtain it via <https://rustup.rs/>
1010

11-
Furthermore, for ESP32-C3, a [*nightly* version](https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust) of the Rust toolchain is currently required, for this training we will use `nightly-2023-11-14` version.
11+
Furthermore, for ESP32-C3, a [*nightly* version](https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust) of the Rust toolchain is currently required, for this training we will use `nightly-2024-06-30` version.
1212

1313
✅ Install *nightly* Rust and add support for the target architecture using the following command:
1414

1515
```console
16-
rustup toolchain install nightly-2023-11-14 --component rust-src
16+
rustup toolchain install nightly-2024-06-30 --component rust-src
1717
```
1818

1919
🔎 Rust is capable of cross-compiling to any supported target (see `rustup target list`). By default, only the native architecture of your system is installed.

book/src/03_2_cargo_generate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ESP_IDF_TOOLS_INSTALL_DIR = { value = "global" } # add this line
5454

5555
```toml
5656
[toolchain]
57-
channel = "nightly-2023-11-14" # change this line
57+
channel = "nightly-2024-06-30" # change this line
5858
```
5959

6060
✅ Run your project by using the following command out of the `hello-world` directory.

0 commit comments

Comments
 (0)