28 lines
651 B
Rust
Raw Normal View History

2021-12-11 21:51:14 +05:30
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
2021-12-11 21:51:14 +05:30
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::Peripherals;
2022-06-12 22:15:44 +02:00
use {defmt_rtt as _, panic_probe as _};
2021-12-11 21:51:14 +05:30
#[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 21:51:14 +05:30
loop {
info!("high");
led.set_high();
2021-12-11 21:51:14 +05:30
Timer::after(Duration::from_millis(1000)).await;
info!("low");
led.set_low();
2021-12-11 21:51:14 +05:30
Timer::after(Duration::from_millis(1000)).await;
}
}