25 lines
		
	
	
		
			592 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			592 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![no_std]
 | |
| #![no_main]
 | |
| #![feature(type_alias_impl_trait)]
 | |
| 
 | |
| #[cfg(feature = "defmt-rtt")]
 | |
| use defmt_rtt::*;
 | |
| 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) {
 | |
|     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;
 | |
|     }
 | |
| }
 |