aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Hastings <eli@seagen.io>2025-04-07 09:51:52 +0100
committerHenrik Tjäder <henrik@tjaders.com>2025-04-07 21:11:21 +0000
commitf145203b549b2e727e3100c8a8d3453599350f6a (patch)
treeb8295b27f8e8800e8f757dc3cffebe78ac2e1271
parenta032fa67b0f97b73b7cbbef038016af841f7d482 (diff)
Remove references to nightly Rust from ESP examples
-rw-r--r--examples/esp32c3/README.md5
-rw-r--r--examples/esp32c6/README.md5
-rw-r--r--examples/esp32c6/rust-toolchain.toml2
3 files changed, 1 insertions, 11 deletions
diff --git a/examples/esp32c3/README.md b/examples/esp32c3/README.md
index fa382c6..788790a 100644
--- a/examples/esp32c3/README.md
+++ b/examples/esp32c3/README.md
@@ -3,11 +3,6 @@ This crate showcases a simple RTIC application for the ESP32-C3.
## Prerequisites
-# Nightly Rust
-The ESP32-C3 HAL requires a nightly build of Rust.
-Following the example of the (Espressif no_std book)[https://docs.esp-rs.org/no_std-training/02_2_software.html], we use this specific build:
-```rustup toolchain install nightly-2023-11-14 --component rust-src --target riscv32imc-unknown-none-elf```
-
# Espressif toolchain
This crate uses the most convenient option in ``cargo-espflash`` and ``espflash``
diff --git a/examples/esp32c6/README.md b/examples/esp32c6/README.md
index 883c063..1d2bf17 100644
--- a/examples/esp32c6/README.md
+++ b/examples/esp32c6/README.md
@@ -3,11 +3,6 @@ This crate showcases a simple RTIC application for the ESP32-C6.
## Prerequisites
-# Nightly Rust
-The ESP32-C6 HAL requires a nightly build of Rust.
-Following the example of the (Espressif no_std book)[https://docs.esp-rs.org/no_std-training/02_2_software.html], we use this specific build:
-```rustup toolchain install nightly-2023-11-14 --component rust-src --target riscv32imac-unknown-none-elf```
-
# Espressif toolchain
This crate uses the most convenient option in ``cargo-espflash`` and ``espflash``
diff --git a/examples/esp32c6/rust-toolchain.toml b/examples/esp32c6/rust-toolchain.toml
index 236ba12..3951889 100644
--- a/examples/esp32c6/rust-toolchain.toml
+++ b/examples/esp32c6/rust-toolchain.toml
@@ -1,4 +1,4 @@
[toolchain]
-channel = "nightly-2023-11-14"
+channel = "stable"
components = ["rust-src"]
targets = ["riscv32imac-unknown-none-elf"]