blob: 6cc7b62cdbb4d3003408e60f1a1ae1c6757224ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#![no_std]
#![no_main]
use embassy_executor::Spawner;
use embassy_time::Timer;
use hal::gpio::{Input, Pull};
use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let p = hal::init(hal::config::Config::default());
defmt::info!("GPIO interrupt example");
// This button is labeled "WAKEUP" on the FRDM-MCXA276
// The board already has a 10K pullup
let mut pin = Input::new(p.P1_7, Pull::Disabled);
let mut press_count = 0u32;
loop {
pin.wait_for_falling_edge().await;
press_count += 1;
defmt::info!("Button pressed! Count: {}", press_count);
Timer::after_millis(50).await;
}
}
|