atsamd_hal/peripherals/eic/d11/
mod.rs

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
mod pin;

#[cfg(feature = "async")]
pub(super) mod async_api {
    use crate::async_hal::interrupts::{Binding, Handler, Interrupt, EIC as EicInterrupt};
    use crate::eic::{Eic, EicFuture, NUM_CHANNELS};
    use crate::pac;
    use crate::util::BitIter;

    use core::marker::PhantomData;

    use embassy_sync::waitqueue::AtomicWaker;

    pub struct InterruptHandler {
        _private: (),
    }

    impl crate::typelevel::Sealed for InterruptHandler {}

    impl Handler<EicInterrupt> for InterruptHandler {
        unsafe fn on_interrupt() {
            let eic = pac::Peripherals::steal().eic;

            let pending_interrupts = BitIter(eic.intflag().read().bits());
            for channel in pending_interrupts {
                let mask = 1 << channel;
                // Disable the interrupt but don't clear; will be cleared
                // when future is next polled.
                eic.intenclr().write(|w| w.bits(mask));
                WAKERS[channel as usize].wake();
            }
        }
    }

    impl Eic {
        /// Turn an EIC pin into a pin usable as a [`Future`](core::future::Future).
        /// The correct interrupt source is needed.
        pub fn into_future<I>(self, _irq: I) -> Eic<EicFuture>
        where
            I: Binding<EicInterrupt, InterruptHandler>,
        {
            EicInterrupt::unpend();
            unsafe { EicInterrupt::enable() };

            Eic {
                eic: self.eic,
                _irqs: PhantomData,
            }
        }
    }

    #[allow(clippy::declare_interior_mutable_const)]
    const NEW_WAKER: AtomicWaker = AtomicWaker::new();
    pub(super) static WAKERS: [AtomicWaker; NUM_CHANNELS] = [NEW_WAKER; NUM_CHANNELS];
}