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

29 lines
672 B
Rust
Raw Normal View History

2021-06-08 20:47:32 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
#[path = "../example_common.rs"]
mod example_common;
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
2021-06-25 22:32:24 +02:00
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::Peripherals;
2021-06-08 20:47:32 +02:00
use example_common::*;
#[embassy::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
}
}