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

Commit ea6c3c9

Browse files
committed
Update MSRV
1 parent 56cd7ba commit ea6c3c9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
- uses: dtolnay/rust-toolchain@v1
159159
with:
160160
target: ${{ matrix.build.target }}
161-
toolchain: "1.76.0"
161+
toolchain: "1.84.0"
162162
components: rust-src
163163
- name: cargo check
164164
run: cargo check --target=${{ matrix.build.target }} --features=${{ matrix.build.chip }}
@@ -183,7 +183,7 @@ jobs:
183183
default: true
184184
ldproxy: false
185185
buildtargets: ${{ matrix.build.chip }}
186-
version: "1.76.0"
186+
version: "1.84.0"
187187
- uses: Swatinem/rust-cache@v2
188188
- name: cargo check
189189
run: cargo check -Zbuild-std=core --target=${{ matrix.build.target }} --features=${{ matrix.build.chip }}

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "flasher-stub"
33
version = "0.3.0"
44
edition = "2021"
5-
rust-version = "1.76"
5+
rust-version = "1.84"
66
license = "MIT OR Apache-2.0"
77
categories = ["embedded", "no-std"]
88

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# esp-flasher-stub
22

33
[![GitHub Workflow Status](https://github.com/esp-rs/esp-flasher-stub/actions/workflows/ci.yml/badge.svg)](https://github.com/esp-rs/esp-flasher-stub/actions/workflows/ci.yml)
4-
![MSRV](https://img.shields.io/badge/MSRV-1.76-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
4+
![MSRV](https://img.shields.io/badge/MSRV-1.84-blue?labelColor=1C2C2E&logo=Rust&style=flat-square)
55
[![Matrix](https://img.shields.io/matrix/esp-rs:matrix.org?label=join%20matrix&color=BEC5C9&labelColor=1C2C2E&logo=matrix&style=flat-square)](https://matrix.to/#/#esp-rs:matrix.org)
66

77
Rust implementation of the [esptool flasher stub](https://github.com/espressif/esptool-legacy-flasher-stub/).
@@ -77,6 +77,7 @@ In order to run `test_esptool.py` follow steps below:
7777
## Debug logs
7878

7979
In order to add debug logs, you can use the `--dprint` flag available in the `xtask` package for `build` and `wrap` commands:
80+
8081
```bash
8182
cd xtask/
8283
cargo run -- wrap esp32c3 --dprint
@@ -90,6 +91,7 @@ cargo build --release --target=riscv32imc-unknown-none-elf --features=esp32c3,dp
9091
```
9192

9293
This will print `esp-flasher-stub` debug messages using `UART1`. By default, `esp-flasher-stub` uses the following pins:
94+
9395
- TX: GPIO 2
9496
- RX: GPIO 0
9597

0 commit comments

Comments
 (0)