Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ ENV LANG=C.UTF-8
# Arguments
ARG CONTAINER_USER=esp
ARG CONTAINER_GROUP=esp
ARG NIGHTLY_VERSION=nightly-2023-11-14
ARG ESP_IDF_VERSION=v5.1.2
ARG NIGHTLY_VERSION=nightly-2024-06-30
ARG ESP_IDF_VERSION=v5.2.2
ARG ESP_BOARD=esp32c3

# Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// "build": {
// "dockerfile": "Dockerfile",
// "args": {
// "NIGHTLY_VERSION": "nightly-2023-11-14"
// "NIGHTLY_VERSION": "nightly-2024-06-30"
// }
// },
"customizations": {
Expand Down
4 changes: 2 additions & 2 deletions book/src/02_2_software.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://rustup.rs/>

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.
Expand Down
2 changes: 1 addition & 1 deletion book/src/03_2_cargo_generate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down