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

28 lines
677 B
Rust
Raw Normal View History

2021-06-08 20:47:32 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::executor::Spawner;
use embassy_executor::time::{Duration, Timer};
2021-06-25 22:32:24 +02:00
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-06-08 20:47:32 +02:00
#[embassy_executor::main]
async fn main(_spawner: Spawner, p: Peripherals) {
2021-06-08 20:47:32 +02:00
info!("Hello World!");
2021-06-25 22:32:24 +02:00
let mut led = Output::new(p.PB14, Level::High, Speed::Low);
2021-06-08 20:47:32 +02:00
loop {
info!("high");
led.set_high();
Timer::after(Duration::from_millis(500)).await;
2021-06-08 20:47:32 +02:00
info!("low");
led.set_low();
Timer::after(Duration::from_millis(500)).await;
2021-06-08 20:47:32 +02:00
}
}