Merge pull request #357 from bobmcwhirter/h7_exti
Add H7 exti button example using correct EXTI reg block offsets.
This commit is contained in:
commit
4b74e8fc50
@ -35,6 +35,7 @@ macro_rules! foreach_exti_irq {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg_attr(exti_v1, path = "v1.rs")]
|
#[cfg_attr(exti_v1, path = "v1.rs")]
|
||||||
|
#[cfg_attr(exti_h7, path = "v1.rs")]
|
||||||
#[cfg_attr(exti_wb55, path = "v2.rs")]
|
#[cfg_attr(exti_wb55, path = "v2.rs")]
|
||||||
mod _version;
|
mod _version;
|
||||||
|
|
||||||
|
36
examples/stm32h7/src/bin/button_exti.rs
Normal file
36
examples/stm32h7/src/bin/button_exti.rs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
#![no_std]
|
||||||
|
#![no_main]
|
||||||
|
#![feature(trait_alias)]
|
||||||
|
#![feature(type_alias_impl_trait)]
|
||||||
|
#![allow(incomplete_features)]
|
||||||
|
|
||||||
|
#[path = "../example_common.rs"]
|
||||||
|
mod example_common;
|
||||||
|
use embassy::executor::Spawner;
|
||||||
|
use embassy_stm32::dbgmcu::Dbgmcu;
|
||||||
|
use embassy_stm32::exti::ExtiInput;
|
||||||
|
use embassy_stm32::gpio::{Input, Pull};
|
||||||
|
use embassy_stm32::Peripherals;
|
||||||
|
use embassy_traits::gpio::{WaitForFallingEdge, WaitForRisingEdge};
|
||||||
|
use example_common::*;
|
||||||
|
|
||||||
|
#[embassy::main]
|
||||||
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
||||||
|
info!("Hello World!");
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
Dbgmcu::enable_all();
|
||||||
|
}
|
||||||
|
|
||||||
|
let button = Input::new(p.PC13, Pull::Down);
|
||||||
|
let mut button = ExtiInput::new(button, p.EXTI13);
|
||||||
|
|
||||||
|
info!("Press the USER button...");
|
||||||
|
|
||||||
|
loop {
|
||||||
|
button.wait_for_rising_edge().await;
|
||||||
|
info!("Pressed!");
|
||||||
|
button.wait_for_falling_edge().await;
|
||||||
|
info!("Released!");
|
||||||
|
}
|
||||||
|
}
|
@ -1 +1 @@
|
|||||||
Subproject commit 79ab92a38d1cbb47dda2f6f8556fe1abc9a14f3a
|
Subproject commit 75a76596c37f07cbbdaa3a689c1776297063b651
|
Loading…
x
Reference in New Issue
Block a user