aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h7rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-05-18 20:51:57 +0200
committerGitHub <[email protected]>2025-05-18 20:51:57 +0200
commit51d0252194cd69f73bade2aaeef3163f3cc7453f (patch)
treecac023f3457123f2fbc7686f2f90414987eae264 /examples/stm32h7rs
parente8b1ea14c7fb151aa5e296ca8f9724f175bdeaef (diff)
parente4fc48764491f8981e4a145a72e9b6e72df8c546 (diff)
Merge pull request #4217 from embassy-rs/rand09
Add rand-core v0.9 support.
Diffstat (limited to 'examples/stm32h7rs')
-rw-r--r--examples/stm32h7rs/Cargo.toml1
-rw-r--r--examples/stm32h7rs/src/bin/eth.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/examples/stm32h7rs/Cargo.toml b/examples/stm32h7rs/Cargo.toml
index 22d59be04..aee2703a1 100644
--- a/examples/stm32h7rs/Cargo.toml
+++ b/examples/stm32h7rs/Cargo.toml
@@ -26,7 +26,6 @@ embedded-nal-async = "0.8.0"
26embedded-io-async = { version = "0.6.1" } 26embedded-io-async = { version = "0.6.1" }
27panic-probe = { version = "0.3", features = ["print-defmt"] } 27panic-probe = { version = "0.3", features = ["print-defmt"] }
28heapless = { version = "0.8", default-features = false } 28heapless = { version = "0.8", default-features = false }
29rand_core = "0.6.3"
30critical-section = "1.1" 29critical-section = "1.1"
31micromath = "2.0.0" 30micromath = "2.0.0"
32stm32-fmc = "0.3.0" 31stm32-fmc = "0.3.0"
diff --git a/examples/stm32h7rs/src/bin/eth.rs b/examples/stm32h7rs/src/bin/eth.rs
index f2bd9575e..6d246bb09 100644
--- a/examples/stm32h7rs/src/bin/eth.rs
+++ b/examples/stm32h7rs/src/bin/eth.rs
@@ -11,7 +11,6 @@ use embassy_stm32::rng::Rng;
11use embassy_stm32::{bind_interrupts, eth, peripherals, rng, Config}; 11use embassy_stm32::{bind_interrupts, eth, peripherals, rng, Config};
12use embassy_time::Timer; 12use embassy_time::Timer;
13use heapless::Vec; 13use heapless::Vec;
14use rand_core::RngCore;
15use static_cell::StaticCell; 14use static_cell::StaticCell;
16use {defmt_rtt as _, panic_probe as _}; 15use {defmt_rtt as _, panic_probe as _};
17 16