2022-04-20 13:49:59 +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-07-29 21:58:35 +02:00
|
|
|
use embassy_executor::executor::Spawner;
|
|
|
|
use embassy_executor::time::{Duration, Timer};
|
2022-04-20 13:49:59 +02:00
|
|
|
use embassy_stm32::gpio::{Level, Output, Speed};
|
|
|
|
use embassy_stm32::Peripherals;
|
|
|
|
use panic_reset as _;
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::main]
|
2022-04-20 13:49:59 +02:00
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
|
|
|
let mut led = Output::new(p.PB15, 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;
|
|
|
|
}
|
|
|
|
}
|