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

35 lines
902 B
Rust
Raw Normal View History

#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::executor::Spawner;
use embassy_stm32::rcc::{ClockSrc, PLLClkDiv, PLLMul, PLLSource, PLLSrcDiv};
use embassy_stm32::rng::Rng;
use embassy_stm32::{Config, Peripherals};
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
fn config() -> Config {
let mut config = Config::default();
2022-04-12 05:06:22 +02:00
// 72Mhz clock (16 / 1 * 18 / 4)
config.rcc.mux = ClockSrc::PLL(
PLLSource::HSI16,
2022-04-12 05:06:22 +02:00
PLLClkDiv::Div4,
PLLSrcDiv::Div1,
2022-04-12 05:06:22 +02:00
PLLMul::Mul18,
Some(PLLClkDiv::Div6), // 48Mhz (16 / 1 * 18 / 6)
);
config
}
#[embassy_executor::main(config = "config()")]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
let mut rng = Rng::new(p.RNG);
let mut buf = [0u8; 16];
unwrap!(rng.async_fill_bytes(&mut buf).await);
info!("random bytes: {:02x}", buf);
}