embassy/examples/boot/application/stm32f3/src/bin/b.rs

25 lines
624 B
Rust
Raw Normal View History

2022-05-02 15:14:10 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
2022-06-12 22:15:44 +02:00
#[cfg(feature = "defmt-rtt")]
use defmt_rtt::*;
use embassy_executor::executor::Spawner;
use embassy_executor::time::{Duration, Timer};
2022-05-02 15:14:10 +02:00
use embassy_stm32::gpio::{Level, Output, Speed};
use panic_reset as _;
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let p = embassy_stm32::init(Default::default());
2022-05-02 15:14:10 +02:00
let mut led = Output::new(p.PA5, Level::High, Speed::Low);
loop {
led.set_high();
Timer::after(Duration::from_millis(500)).await;
led.set_low();
Timer::after(Duration::from_millis(500)).await;
}
}