2022-05-06 09:21:29 +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::*;
|
2022-05-06 09:21:29 +02:00
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy::time::{Duration, Timer};
|
|
|
|
use embassy_stm32::gpio::{Level, Output, Speed};
|
|
|
|
use embassy_stm32::Peripherals;
|
|
|
|
use panic_reset as _;
|
|
|
|
|
|
|
|
#[embassy::main]
|
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
|
|
|
Timer::after(Duration::from_millis(300)).await;
|
|
|
|
let mut led = Output::new(p.PB14, Level::High, Speed::Low);
|
|
|
|
led.set_high();
|
|
|
|
|
|
|
|
loop {
|
|
|
|
led.set_high();
|
|
|
|
Timer::after(Duration::from_millis(500)).await;
|
|
|
|
|
|
|
|
led.set_low();
|
|
|
|
Timer::after(Duration::from_millis(500)).await;
|
|
|
|
}
|
|
|
|
}
|