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

36 lines
962 B
Rust
Raw Normal View History

2021-08-27 22:10:50 +02:00
#![no_std]
#![no_main]
#![feature(trait_alias)]
#![feature(type_alias_impl_trait)]
#![allow(incomplete_features)]
#[path = "../example_common.rs"]
mod example_common;
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
2021-08-30 15:57:31 +02:00
use embassy::traits::rng::Random as _;
2021-08-27 22:10:50 +02:00
use embassy_stm32::gpio::{Level, Output, Speed};
2021-08-30 15:57:31 +02:00
use embassy_stm32::rng::Random;
2021-08-27 22:10:50 +02:00
use embassy_stm32::Peripherals;
use embedded_hal::digital::v2::OutputPin;
use example_common::*;
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
let mut led = Output::new(p.PB14, Level::High, Speed::Low);
let mut rng = Random::new(p.RNG);
loop {
2021-08-30 15:57:31 +02:00
info!("high {}", unwrap!(rng.next(16).await));
2021-08-27 22:10:50 +02:00
unwrap!(led.set_high());
Timer::after(Duration::from_millis(500)).await;
2021-08-30 15:57:31 +02:00
info!("low {}", unwrap!(rng.next(16).await));
2021-08-27 22:10:50 +02:00
unwrap!(led.set_low());
Timer::after(Duration::from_millis(500)).await;
}
}