Skip to content

Commit

Permalink
Update dependencies (#50)
Browse files Browse the repository at this point in the history
* docs: Update links to monorepo

* build: Update deps

* build: Update esp-backtrace
  • Loading branch information
SergioGasquez authored Jul 16, 2024
1 parent 9f040ac commit 044c424
Show file tree
Hide file tree
Showing 23 changed files with 1,395 additions and 876 deletions.
246 changes: 156 additions & 90 deletions advanced/stack-overflow-detection/Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions advanced/stack-overflow-detection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
esp-hal = { version = "0.18.0", features = ["esp32c3"] }
esp-backtrace = { version = "0.12.0", features = ["esp32c3", "panic-handler", "exception-handler", "println"] }
esp-println = { version = "0.9.1", features = ["esp32c3", "uart"] }
esp-hal = { version = "0.19.0", features = ["esp32c3"] }
esp-backtrace = { version = "0.13.0", features = ["esp32c3", "panic-handler", "exception-handler", "println"] }
esp-println = { version = "0.10.0", features = ["esp32c3"] }
critical-section = "1.1.2"
2 changes: 1 addition & 1 deletion book/src/01_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The goal of this book is to provide a getting-started guide on using the Rust pr

The introductory trail will introduce you to the basics of embedded development and how to make the embedded board interact with the outside world by reacting to a button press, and lighting an LED.

> Note that there are several examples covering the use of specific peripherals under the examples folder of `esp-hal`. See [`esp-hal/examples`]()
> Note that there are several examples covering the use of specific peripherals under the examples folder of `esp-hal`. See [`esp-hal/examples`].
If you would like to learn about `std` development, see [Using the Standard Library (std)] chapter of [The Rust on ESP Book] and,
[Embedded Rust on Espressif] training.
Expand Down
8 changes: 4 additions & 4 deletions book/src/03_6_http_client.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ There are some other relevant crates, on which `esp-wifi` depends on:
- It does not require heap allocation (which is a requirement for some `no_std` projects)
- For more information about the crate, see the [official documentation][smoltcp-docs]

Additionally when using async, [`embassy-net`][embassy-net] is relevant.
Additionally, when using async, [`embassy-net`][embassy-net] is relevant.

[esp-wifi]: https://github.com/esp-rs/esp-wifi
[esp-wifi]: https://github.com/esp-rs/esp-hal/tree/main/esp-wifi
[embassy-net]: https://github.com/embassy-rs/embassy/tree/main/embassy-net
[smoltcp]: https://github.com/smoltcp-rs/smoltcp
[smoltcp-docs]: https://docs.rs/smoltcp/latest/smoltcp/
Expand All @@ -38,8 +38,8 @@ cargo run --release --example http-client

✅ Read the [Optimization Level] section of the [`esp-wifi`] README.

[Optimization Level]: https://github.com/esp-rs/esp-wifi/tree/main/esp-wifi#optimization-level
[`esp-wifi`]: https://github.com/esp-rs/esp-wifi
[Optimization Level]: https://github.com/esp-rs/esp-hal/tree/main/esp-wifi#optimization-level
[`esp-wifi`]: https://github.com/esp-rs/esp-hal/tree/main/esp-wifi

## Exercise

Expand Down
4 changes: 2 additions & 2 deletions book/src/03_7_defmt.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ In this chapter, we will cover [`defmt`][defmt], a highly efficient logging fram
- `esp-backtrace` has a `defmt` feature that uses `defmt` logging to print panic and exception handler messages.


[esp-println]: https://github.com/esp-rs/esp-println
[esp-backtrace]: https://github.com/esp-rs/esp-backtrace
[esp-println]: https://github.com/esp-rs/esp-hal/tree/main/esp-println
[esp-backtrace]: https://github.com/esp-rs/esp-hal/tree/main/esp-backtrace
[espflash]: https://github.com/esp-rs/espflash
[espflash-logformat]: https://github.com/esp-rs/espflash/blob/main/espflash/README.md#logging-format

Expand Down
Loading

0 comments on commit 044c424

Please sign in to comment.