embassy/examples/stm32l4/src/bin/button_exti.rs

43 lines
1.1 KiB
Rust
Raw Normal View History

2021-06-08 16:36:47 +02:00
#![no_std]
#![no_main]
#![feature(trait_alias)]
#![feature(min_type_alias_impl_trait)]
#![feature(impl_trait_in_bindings)]
#![feature(type_alias_impl_trait)]
#![allow(incomplete_features)]
#[path = "../example_common.rs"]
mod example_common;
2021-07-24 13:57:11 +02:00
use defmt::panic;
use embassy::executor::Spawner;
2021-06-08 16:36:47 +02:00
use embassy_stm32::exti::ExtiInput;
use embassy_stm32::gpio::{Input, Pull};
2021-07-24 13:57:11 +02:00
use embassy_stm32::{pac, Peripherals};
2021-06-08 16:36:47 +02:00
use embassy_traits::gpio::{WaitForFallingEdge, WaitForRisingEdge};
use example_common::*;
2021-07-24 13:57:11 +02:00
#[embassy::main]
async fn main(_spawner: Spawner, p: Peripherals) {
2021-06-08 16:36:47 +02:00
info!("Hello World!");
2021-07-15 00:30:31 +02:00
unsafe {
pac::DBGMCU.cr().modify(|w| {
w.set_dbg_sleep(true);
w.set_dbg_standby(true);
w.set_dbg_stop(true);
});
}
2021-06-08 16:36:47 +02:00
2021-07-24 13:57:11 +02:00
let button = Input::new(p.PC13, Pull::Up);
let mut button = ExtiInput::new(button, p.EXTI13);
2021-06-08 16:36:47 +02:00
2021-07-24 13:57:11 +02:00
info!("Press the USER button...");
2021-06-08 16:36:47 +02:00
2021-07-24 13:57:11 +02:00
loop {
button.wait_for_falling_edge().await;
info!("Pressed!");
button.wait_for_rising_edge().await;
info!("Released!");
}
2021-06-08 16:36:47 +02:00
}