u5 - add working rng example
This commit is contained in:
parent
377e58e408
commit
f9e7fc6e5e
1 changed files with 25 additions and 0 deletions
25
examples/stm32u5/src/bin/rng.rs
Normal file
25
examples/stm32u5/src/bin/rng.rs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#![no_std]
|
||||||
|
#![no_main]
|
||||||
|
|
||||||
|
use defmt::*;
|
||||||
|
use embassy_executor::Spawner;
|
||||||
|
use embassy_stm32::rng::Rng;
|
||||||
|
use embassy_stm32::{bind_interrupts, peripherals, rng};
|
||||||
|
use {defmt_rtt as _, panic_probe as _};
|
||||||
|
|
||||||
|
bind_interrupts!(struct Irqs {
|
||||||
|
RNG => rng::InterruptHandler<peripherals::RNG>;
|
||||||
|
});
|
||||||
|
|
||||||
|
#[embassy_executor::main]
|
||||||
|
async fn main(_spawner: Spawner) {
|
||||||
|
let p = embassy_stm32::init(Default::default());
|
||||||
|
|
||||||
|
info!("Hello World!");
|
||||||
|
|
||||||
|
let mut rng = Rng::new(p.RNG, Irqs);
|
||||||
|
|
||||||
|
let mut buf = [0u8; 16];
|
||||||
|
unwrap!(rng.async_fill_bytes(&mut buf).await);
|
||||||
|
info!("random bytes: {:02x}", buf);
|
||||||
|
}
|
Loading…
Reference in a new issue