Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 299b8d9

Browse files
authoredSep 18, 2024··
Revert "feat: Use stable channel instead of nightly" (#72)
This reverts commit 0ad8445.
1 parent 0ad8445 commit 299b8d9

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
- uses: actions/checkout@v4
131131
- uses: dtolnay/rust-toolchain@v1
132132
with:
133-
toolchain: stable
133+
toolchain: nightly
134134
components: rustfmt
135135
- uses: Swatinem/rust-cache@v2
136136
- name: cargo fmt

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: matrix.build.chip != 'esp32' && matrix.build.chip != 'esp32s2' && matrix.build.chip != 'esp32s3'
3434
with:
3535
target: ${{ matrix.build.target }}
36-
toolchain: stable
36+
toolchain: nightly
3737
components: rust-src
3838
# Xtensa toolchain
3939
- uses: esp-rs/xtensa-toolchain@v1.5

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ In order to build the flasher stub manually, you must specify the appropriate to
2525
cargo +esp build --release --features=esp32 --target=xtensa-esp32-none-elf
2626

2727
# ESP32-C2
28-
cargo +stable build --release --features=esp32c2 --target=riscv32imc-unknown-none-elf
28+
cargo +nightly build --release --features=esp32c2 --target=riscv32imc-unknown-none-elf
2929

3030
# ESP32-C3
31-
cargo +stable build --release --features=esp32c3 --target=riscv32imc-unknown-none-elf
31+
cargo +nightly build --release --features=esp32c3 --target=riscv32imc-unknown-none-elf
3232

3333
# ESP32-C6
34-
cargo +stable build --release --features=esp32c6 --target=riscv32imac-unknown-none-elf
34+
cargo +nightly build --release --features=esp32c6 --target=riscv32imac-unknown-none-elf
3535

3636
# ESP32-H2
37-
cargo +stable build --release --features=esp32h2 --target=riscv32imac-unknown-none-elf
37+
cargo +nightly build --release --features=esp32h2 --target=riscv32imac-unknown-none-elf
3838

3939
# ESP32-S2
4040
cargo +esp build --release --features=esp32s2 --target=xtensa-esp32s2-none-elf

‎src/main.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,22 @@ use flasher_stub::{
77
dprintln,
88
hal::{
99
clock::{ClockControl, Clocks},
10-
entry, gpio,
10+
entry,
11+
gpio,
1112
peripherals::{self, Peripherals},
1213
prelude::*,
1314
uart::{
1415
config::{Config, DataBits, Parity, StopBits},
15-
ClockSource, TxRxPins, Uart,
16+
ClockSource,
17+
TxRxPins,
18+
Uart,
1619
},
1720
Blocking,
1821
},
1922
protocol::Stub,
20-
targets, Transport, TransportMethod,
23+
targets,
24+
Transport,
25+
TransportMethod,
2126
};
2227
use static_cell::StaticCell;
2328

‎xtask/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ impl Chip {
2828
pub fn toolchain(&self) -> &'static str {
2929
match self {
3030
Chip::Esp32 | Chip::Esp32s2 | Chip::Esp32s3 => "+esp",
31-
_ => "+stable",
31+
_ => "+nightly",
3232
}
3333
}
3434

0 commit comments

Comments
 (0)
This repository has been archived.