mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-29 21:31:08 +00:00

Before we'd generate all pins Px0..Px15 for each GPIOx port. This changes codegen to only generate singletons for actually-existing pins. (AFs were already previously filtered, so these non-existing pins were already mostly useless)
28 lines
659 B
Rust
28 lines
659 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
use defmt::*;
|
|
use embassy_executor::Spawner;
|
|
use embassy_stm32::gpio::{Level, Output, Speed};
|
|
use embassy_time::Timer;
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
#[embassy_executor::main]
|
|
async fn main(_spawner: Spawner) -> ! {
|
|
let p = embassy_stm32::init(Default::default());
|
|
info!("Hello World!");
|
|
|
|
// replace PC13 with the right pin for your board.
|
|
let mut led = Output::new(p.PC13, Level::Low, Speed::Medium);
|
|
|
|
loop {
|
|
defmt::info!("on!");
|
|
led.set_low();
|
|
Timer::after_millis(200).await;
|
|
|
|
defmt::info!("off!");
|
|
led.set_high();
|
|
Timer::after_millis(200).await;
|
|
}
|
|
}
|