Skip to content

Commit

Permalink
Merge pull request #65 from SergioGasquez/feat/releases
Browse files Browse the repository at this point in the history
Udpate training to latest esp-hal releases
  • Loading branch information
bjoernQ authored Jan 16, 2025
2 parents 24a1789 + fa2560a commit aa37d79
Show file tree
Hide file tree
Showing 35 changed files with 1,065 additions and 910 deletions.
164 changes: 85 additions & 79 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.22.0", features = ["esp32c3"] }
esp-backtrace = { version = "0.14.2", features = ["esp32c3", "panic-handler", "exception-handler", "println"] }
esp-println = { version = "0.12.0", features = ["esp32c3"] }
esp-hal = { version = "0.23.1", features = ["esp32c3"] }
esp-backtrace = { version = "0.15.0", features = ["esp32c3", "panic-handler", "exception-handler", "println"] }
esp-println = { version = "0.13.0", features = ["esp32c3"] }
critical-section = "1.2.0"
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ use core::ptr::addr_of_mut;

use critical_section::Mutex;
use esp_backtrace as _;
use esp_hal::{assist_debug::DebugAssist, prelude::*};
use esp_hal::{assist_debug::DebugAssist, handler, interrupt::InterruptConfigurable, main, ram};
use esp_println::println;

#[entry]
#[main]
fn main() -> ! {
let peripherals = esp_hal::init(esp_hal::Config::default());

Expand Down
4 changes: 2 additions & 2 deletions advanced/stack-overflow-detection/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ use core::ptr::addr_of_mut;

use critical_section::Mutex;
use esp_backtrace as _;
use esp_hal::{assist_debug::DebugAssist, prelude::*};
use esp_hal::{assist_debug::DebugAssist, handler, interrupt::InterruptConfigurable, main, ram};
use esp_println::println;

#[entry]
#[main]
fn main() -> ! {
let peripherals = esp_hal::init(esp_hal::Config::default());

Expand Down
Loading

0 comments on commit aa37d79

Please sign in to comment.