From 34d7a4443cb8d1b43e95a9061f0a3034d1376240 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Tue, 2 Jul 2024 10:22:34 +0200 Subject: [PATCH 1/2] feat: Update nigthly version --- .devcontainer/Dockerfile | 2 +- .devcontainer/devcontainer.json | 2 +- book/src/02_2_software.md | 4 ++-- book/src/03_2_cargo_generate.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index a42adcf9..61d1aff3 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,7 +7,7 @@ ENV LANG=C.UTF-8 # Arguments ARG CONTAINER_USER=esp ARG CONTAINER_GROUP=esp -ARG NIGHTLY_VERSION=nightly-2023-11-14 +ARG NIGHTLY_VERSION=nightly-2024-06-30 ARG ESP_IDF_VERSION=v5.1.2 ARG ESP_BOARD=esp32c3 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index de8beff6..e861e6b5 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,7 @@ // "build": { // "dockerfile": "Dockerfile", // "args": { - // "NIGHTLY_VERSION": "nightly-2023-11-14" + // "NIGHTLY_VERSION": "nightly-2024-06-30" // } // }, "customizations": { diff --git a/book/src/02_2_software.md b/book/src/02_2_software.md index 7680c784..cbda5702 100644 --- a/book/src/02_2_software.md +++ b/book/src/02_2_software.md @@ -8,12 +8,12 @@ Follow the steps below for a default installation of the ESP32-C3 platform tooli ✅ If you haven't got Rust on your computer, obtain it via -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. +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. ✅ Install *nightly* Rust and add support for the target architecture using the following command: ```console -rustup toolchain install nightly-2023-11-14 --component rust-src +rustup toolchain install nightly-2024-06-30 --component rust-src ``` 🔎 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. diff --git a/book/src/03_2_cargo_generate.md b/book/src/03_2_cargo_generate.md index a357bbee..ed29ec2c 100644 --- a/book/src/03_2_cargo_generate.md +++ b/book/src/03_2_cargo_generate.md @@ -54,7 +54,7 @@ ESP_IDF_TOOLS_INSTALL_DIR = { value = "global" } # add this line ```toml [toolchain] -channel = "nightly-2023-11-14" # change this line +channel = "nightly-2024-06-30" # change this line ``` ✅ Run your project by using the following command out of the `hello-world` directory. From bd523ada3c9781b74c79a3196ef147cdfb2c0bde Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Tue, 2 Jul 2024 10:27:49 +0200 Subject: [PATCH 2/2] feat: Update esp-idf version --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 61d1aff3..b5d837f2 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,7 +8,7 @@ ENV LANG=C.UTF-8 ARG CONTAINER_USER=esp ARG CONTAINER_GROUP=esp ARG NIGHTLY_VERSION=nightly-2024-06-30 -ARG ESP_IDF_VERSION=v5.1.2 +ARG ESP_IDF_VERSION=v5.2.2 ARG ESP_BOARD=esp32c3 # Install dependencies