embassy/examples/stm32h7/src/bin/rng.rs

28 lines
708 B
Rust
Raw Normal View History

2021-08-27 22:10:50 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::Spawner;
use embassy_stm32::rng::Rng;
2023-09-19 04:22:57 +02:00
use embassy_stm32::{bind_interrupts, peripherals, rng, Config};
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
2021-08-27 22:10:50 +02:00
2023-07-31 01:41:12 +02:00
bind_interrupts!(struct Irqs {
RNG => rng::InterruptHandler<peripherals::RNG>;
});
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
2023-09-19 04:22:57 +02:00
let mut config = Config::default();
config.rcc.hsi48 = true; // needed for RNG.
let p = embassy_stm32::init(config);
2021-08-27 22:10:50 +02:00
info!("Hello World!");
2023-07-31 01:41:12 +02:00
let mut rng = Rng::new(p.RNG, Irqs);
2021-08-27 22:10:50 +02:00
let mut buf = [0u8; 16];
unwrap!(rng.async_fill_bytes(&mut buf).await);
info!("random bytes: {:02x}", buf);
2021-08-27 22:10:50 +02:00
}