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

30 lines
671 B
Rust
Raw Normal View History

2021-12-11 17:21:14 +01:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
2021-12-11 17:21:14 +01:00
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::Peripherals;
use defmt_rtt as _; // global logger
use panic_probe as _;
2021-12-11 17:21:14 +01:00
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
info!("Hello World!");
2022-05-02 15:14:10 +02:00
let mut led = Output::new(p.PA5, Level::High, Speed::Low);
2021-12-11 17:21:14 +01:00
loop {
info!("high");
led.set_high();
2021-12-11 17:21:14 +01:00
Timer::after(Duration::from_millis(1000)).await;
info!("low");
led.set_low();
2021-12-11 17:21:14 +01:00
Timer::after(Duration::from_millis(1000)).await;
}
}