2022-12-04 09:38:57 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use defmt::*;
|
|
|
|
use embassy_executor::Spawner;
|
2023-07-31 01:41:12 +02:00
|
|
|
use embassy_stm32::rng::{self, Rng};
|
2023-10-23 00:28:54 +02:00
|
|
|
use embassy_stm32::time::Hertz;
|
|
|
|
use embassy_stm32::{bind_interrupts, peripherals};
|
2022-12-04 09:38:57 +01:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
|
2023-07-31 01:41:12 +02:00
|
|
|
bind_interrupts!(struct Irqs{
|
|
|
|
RNG => rng::InterruptHandler<peripherals::RNG>;
|
|
|
|
});
|
|
|
|
|
2022-12-04 09:38:57 +01:00
|
|
|
#[embassy_executor::main]
|
|
|
|
async fn main(_spawner: Spawner) {
|
|
|
|
let mut config = embassy_stm32::Config::default();
|
2023-10-23 00:28:54 +02:00
|
|
|
{
|
|
|
|
use embassy_stm32::rcc::*;
|
|
|
|
config.rcc.hse = Some(Hse {
|
|
|
|
freq: Hertz(32_000_000),
|
|
|
|
mode: HseMode::Bypass,
|
2023-10-23 01:09:36 +02:00
|
|
|
prescaler: HsePrescaler::DIV1,
|
2023-10-23 00:28:54 +02:00
|
|
|
});
|
|
|
|
config.rcc.mux = ClockSrc::PLL1_R;
|
|
|
|
config.rcc.pll = Some(Pll {
|
2023-11-13 00:52:01 +01:00
|
|
|
source: PllSource::HSE,
|
2023-10-23 00:28:54 +02:00
|
|
|
prediv: PllPreDiv::DIV2,
|
|
|
|
mul: PllMul::MUL6,
|
|
|
|
divp: None,
|
|
|
|
divq: Some(PllQDiv::DIV2), // PLL1_Q clock (32 / 2 * 6 / 2), used for RNG
|
|
|
|
divr: Some(PllRDiv::DIV2), // sysclk 48Mhz clock (32 / 2 * 6 / 2)
|
|
|
|
});
|
|
|
|
}
|
2022-12-04 09:38:57 +01:00
|
|
|
let p = embassy_stm32::init(config);
|
2023-10-17 15:51:46 +02:00
|
|
|
|
2022-12-04 09:38:57 +01:00
|
|
|
info!("Hello World!");
|
|
|
|
|
2023-07-31 01:41:12 +02:00
|
|
|
let mut rng = Rng::new(p.RNG, Irqs);
|
2022-12-04 09:38:57 +01:00
|
|
|
|
|
|
|
let mut buf = [0u8; 16];
|
|
|
|
unwrap!(rng.async_fill_bytes(&mut buf).await);
|
|
|
|
info!("random bytes: {:02x}", buf);
|
|
|
|
|
|
|
|
loop {}
|
|
|
|
}
|