embassy/examples/stm32f7/src/bin/blinky.rs

28 lines
649 B
Rust
Raw Normal View History

2021-10-19 15:36:41 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
2021-10-19 15:36:41 +02:00
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::Peripherals;
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
2021-10-19 15:36:41 +02:00
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
let mut led = Output::new(p.PB7, Level::High, Speed::Low);
loop {
info!("high");
led.set_high();
2021-10-19 15:36:41 +02:00
Timer::after(Duration::from_millis(300)).await;
info!("low");
led.set_low();
2021-10-19 15:36:41 +02:00
Timer::after(Duration::from_millis(300)).await;
}
}