2021-06-09 15:22:52 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2022-04-02 04:35:06 +02:00
|
|
|
use defmt::*;
|
2022-07-29 21:58:35 +02:00
|
|
|
use embassy_executor::executor::Spawner;
|
2021-06-09 15:22:52 +02:00
|
|
|
use embassy_stm32::exti::ExtiInput;
|
|
|
|
use embassy_stm32::gpio::{Input, Pull};
|
2022-01-04 23:58:13 +01:00
|
|
|
use embassy_stm32::Peripherals;
|
2022-06-12 22:15:44 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2021-06-09 15:22:52 +02:00
|
|
|
|
2022-01-04 23:58:13 +01:00
|
|
|
fn config() -> embassy_stm32::Config {
|
|
|
|
let mut config = embassy_stm32::Config::default();
|
|
|
|
config.rcc.enable_hsi48 = true;
|
|
|
|
config
|
|
|
|
}
|
2021-06-09 15:22:52 +02:00
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::main(config = "config()")]
|
2022-01-04 23:58:13 +01:00
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
2021-06-09 15:22:52 +02:00
|
|
|
let button = Input::new(p.PB2, Pull::Up);
|
|
|
|
let mut button = ExtiInput::new(button, p.EXTI2);
|
|
|
|
|
|
|
|
info!("Press the USER button...");
|
|
|
|
|
|
|
|
loop {
|
|
|
|
button.wait_for_falling_edge().await;
|
|
|
|
info!("Pressed!");
|
|
|
|
button.wait_for_rising_edge().await;
|
|
|
|
info!("Released!");
|
|
|
|
}
|
|
|
|
}
|