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

28 lines
663 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::*;
use embassy_executor::Spawner;
2021-12-11 17:21:14 +01:00
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_time::{Duration, Timer};
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
2021-12-11 17:21:14 +01:00
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let p = embassy_stm32::init(Default::default());
2021-12-11 17:21:14 +01:00
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;
}
}