2020-11-09 00:04:34 +00:00
|
|
|
use core::future::Future;
|
2021-02-04 22:56:17 +00:00
|
|
|
use core::mem::ManuallyDrop;
|
|
|
|
use core::ops::Deref;
|
|
|
|
use core::pin::Pin;
|
2020-09-22 22:32:49 +00:00
|
|
|
use core::ptr;
|
2020-11-09 00:04:34 +00:00
|
|
|
use core::task::{Context, Poll};
|
2021-02-28 23:44:38 +00:00
|
|
|
use embassy::interrupt::InterruptExt;
|
2021-03-02 20:14:58 +00:00
|
|
|
use embassy::traits::gpio::{WaitForHigh, WaitForLow};
|
2020-09-22 22:32:49 +00:00
|
|
|
use embassy::util::Signal;
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
use crate::hal::gpio::{Input, Level, Output, Pin as GpioPin, Port};
|
2020-09-22 22:32:49 +00:00
|
|
|
use crate::interrupt;
|
2021-02-04 22:56:17 +00:00
|
|
|
use crate::pac;
|
2020-09-29 17:18:52 +00:00
|
|
|
use crate::pac::generic::Reg;
|
|
|
|
use crate::pac::gpiote::_TASKS_OUT;
|
2021-02-04 22:56:17 +00:00
|
|
|
use crate::pac::{p0 as pac_gpio, GPIOTE};
|
2020-09-22 22:32:49 +00:00
|
|
|
|
2020-09-29 17:18:52 +00:00
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
use crate::pac::gpiote::{_TASKS_CLR, _TASKS_SET};
|
|
|
|
|
2020-11-08 17:59:31 +00:00
|
|
|
pub const CHANNEL_COUNT: usize = 8;
|
|
|
|
|
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
|
|
|
pub const PIN_COUNT: usize = 48;
|
|
|
|
#[cfg(not(any(feature = "52833", feature = "52840")))]
|
|
|
|
pub const PIN_COUNT: usize = 32;
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
pub trait ChannelID {
|
|
|
|
fn number(&self) -> usize;
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
macro_rules! impl_channel {
|
|
|
|
($ChX:ident, $n:expr) => {
|
|
|
|
pub struct $ChX(());
|
|
|
|
impl $ChX {
|
|
|
|
pub fn degrade(self) -> ChAny {
|
|
|
|
ChAny($n)
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 22:32:49 +00:00
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
impl ChannelID for $ChX {
|
|
|
|
fn number(&self) -> usize {
|
|
|
|
$n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2020-11-08 17:59:31 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
impl_channel!(Ch0, 0);
|
|
|
|
impl_channel!(Ch1, 1);
|
|
|
|
impl_channel!(Ch2, 2);
|
|
|
|
impl_channel!(Ch3, 3);
|
|
|
|
impl_channel!(Ch4, 4);
|
|
|
|
impl_channel!(Ch5, 5);
|
|
|
|
impl_channel!(Ch6, 6);
|
|
|
|
impl_channel!(Ch7, 7);
|
|
|
|
|
|
|
|
pub struct ChAny(u8);
|
|
|
|
|
|
|
|
impl ChannelID for ChAny {
|
|
|
|
fn number(&self) -> usize {
|
|
|
|
self.0 as usize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub struct Gpiote(());
|
|
|
|
|
|
|
|
const NEW_SIGNAL: Signal<()> = Signal::new();
|
|
|
|
static CHANNEL_SIGNALS: [Signal<()>; CHANNEL_COUNT] = [NEW_SIGNAL; CHANNEL_COUNT];
|
|
|
|
static PORT_SIGNALS: [Signal<()>; PIN_COUNT] = [NEW_SIGNAL; PIN_COUNT];
|
|
|
|
|
2020-11-08 16:38:45 +00:00
|
|
|
pub enum InputChannelPolarity {
|
2020-09-22 22:32:49 +00:00
|
|
|
None,
|
|
|
|
HiToLo,
|
|
|
|
LoToHi,
|
|
|
|
Toggle,
|
|
|
|
}
|
|
|
|
|
2020-09-29 17:18:52 +00:00
|
|
|
/// Polarity of the `task out` operation.
|
2020-11-08 16:38:45 +00:00
|
|
|
pub enum OutputChannelPolarity {
|
2020-09-29 17:18:52 +00:00
|
|
|
Set,
|
|
|
|
Clear,
|
|
|
|
Toggle,
|
|
|
|
}
|
|
|
|
|
2020-12-01 16:46:56 +00:00
|
|
|
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
2020-09-22 22:32:49 +00:00
|
|
|
pub enum NewChannelError {
|
|
|
|
NoFreeChannels,
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
pub struct Channels {
|
|
|
|
pub ch0: Ch0,
|
|
|
|
pub ch1: Ch1,
|
|
|
|
pub ch2: Ch2,
|
|
|
|
pub ch3: Ch3,
|
|
|
|
pub ch4: Ch4,
|
|
|
|
pub ch5: Ch5,
|
|
|
|
pub ch6: Ch6,
|
|
|
|
pub ch7: Ch7,
|
|
|
|
}
|
|
|
|
|
2020-09-22 22:32:49 +00:00
|
|
|
impl Gpiote {
|
2021-02-26 00:55:27 +00:00
|
|
|
pub fn new(gpiote: GPIOTE, irq: interrupt::GPIOTE) -> (Self, Channels) {
|
2020-11-08 17:59:31 +00:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-02-04 22:56:17 +00:00
|
|
|
let ports = unsafe { &[&*pac::P0::ptr(), &*pac::P1::ptr()] };
|
2020-11-08 17:59:31 +00:00
|
|
|
#[cfg(not(any(feature = "52833", feature = "52840")))]
|
2021-02-04 22:56:17 +00:00
|
|
|
let ports = unsafe { &[&*pac::P0::ptr()] };
|
2020-11-08 17:59:31 +00:00
|
|
|
|
|
|
|
for &p in ports {
|
|
|
|
// Enable latched detection
|
|
|
|
p.detectmode.write(|w| w.detectmode().ldetect());
|
|
|
|
// Clear latch
|
|
|
|
p.latch.write(|w| unsafe { w.bits(0xFFFFFFFF) })
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable interrupts
|
|
|
|
gpiote.events_port.write(|w| w);
|
|
|
|
gpiote.intenset.write(|w| w.port().set());
|
2021-02-26 01:04:48 +00:00
|
|
|
irq.set_handler(Self::on_irq);
|
2020-12-29 00:53:17 +00:00
|
|
|
irq.unpend();
|
|
|
|
irq.enable();
|
2020-09-22 22:32:49 +00:00
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
(
|
|
|
|
Self(()),
|
|
|
|
Channels {
|
|
|
|
ch0: Ch0(()),
|
|
|
|
ch1: Ch1(()),
|
|
|
|
ch2: Ch2(()),
|
|
|
|
ch3: Ch3(()),
|
|
|
|
ch4: Ch4(()),
|
|
|
|
ch5: Ch5(()),
|
|
|
|
ch6: Ch6(()),
|
|
|
|
ch7: Ch7(()),
|
|
|
|
},
|
|
|
|
)
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
2020-12-29 00:53:17 +00:00
|
|
|
|
2021-01-04 21:25:39 +00:00
|
|
|
unsafe fn on_irq(_ctx: *mut ()) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = &*GPIOTE::ptr();
|
2020-12-29 00:53:17 +00:00
|
|
|
|
2021-02-14 00:41:36 +00:00
|
|
|
for (event_in, signal) in g.events_in.iter().zip(CHANNEL_SIGNALS.iter()) {
|
|
|
|
if event_in.read().bits() != 0 {
|
|
|
|
event_in.write(|w| w);
|
|
|
|
signal.signal(());
|
2020-12-29 00:53:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
if g.events_port.read().bits() != 0 {
|
|
|
|
g.events_port.write(|w| w);
|
2020-12-29 00:53:17 +00:00
|
|
|
|
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-02-04 22:56:17 +00:00
|
|
|
let ports = &[&*pac::P0::ptr(), &*pac::P1::ptr()];
|
2020-12-29 00:53:17 +00:00
|
|
|
#[cfg(not(any(feature = "52833", feature = "52840")))]
|
2021-02-04 22:56:17 +00:00
|
|
|
let ports = &[&*pac::P0::ptr()];
|
2020-12-29 00:53:17 +00:00
|
|
|
|
|
|
|
let mut work = true;
|
|
|
|
while work {
|
|
|
|
work = false;
|
|
|
|
for (port, &p) in ports.iter().enumerate() {
|
|
|
|
for pin in BitIter(p.latch.read().bits()) {
|
|
|
|
work = true;
|
|
|
|
p.pin_cnf[pin as usize].modify(|_, w| w.sense().disabled());
|
|
|
|
p.latch.write(|w| w.bits(1 << pin));
|
2021-02-04 22:56:17 +00:00
|
|
|
PORT_SIGNALS[port * 32 + pin as usize].signal(());
|
2020-12-29 00:53:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
fn pin_num<T>(pin: &GpioPin<T>) -> usize {
|
2020-11-08 17:59:31 +00:00
|
|
|
let port = match pin.port() {
|
|
|
|
Port::Port0 => 0,
|
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
|
|
|
Port::Port1 => 32,
|
|
|
|
};
|
|
|
|
|
|
|
|
port + pin.pin() as usize
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
fn pin_block<T>(pin: &GpioPin<T>) -> &pac_gpio::RegisterBlock {
|
2020-11-08 17:59:31 +00:00
|
|
|
let ptr = match pin.port() {
|
2021-02-04 22:56:17 +00:00
|
|
|
Port::Port0 => pac::P0::ptr(),
|
2020-11-08 17:59:31 +00:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-02-04 22:56:17 +00:00
|
|
|
Port::Port1 => pac::P1::ptr(),
|
2020-11-08 17:59:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
unsafe { &*ptr }
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
fn pin_conf<T>(pin: &GpioPin<T>) -> &pac_gpio::PIN_CNF {
|
2020-11-08 17:59:31 +00:00
|
|
|
&pin_block(pin).pin_cnf[pin.pin() as usize]
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
pub struct InputChannel<C: ChannelID, T> {
|
|
|
|
ch: C,
|
|
|
|
pin: GpioPin<Input<T>>,
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
impl<C: ChannelID, T> Drop for InputChannel<C, T> {
|
2020-09-22 22:32:49 +00:00
|
|
|
fn drop(&mut self) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
g.config[index].write(|w| w.mode().disabled());
|
|
|
|
g.intenclr.write(|w| unsafe { w.bits(1 << index) });
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
impl<C: ChannelID, T> InputChannel<C, T> {
|
|
|
|
pub fn new(
|
|
|
|
_gpiote: Gpiote,
|
|
|
|
ch: C,
|
|
|
|
pin: GpioPin<Input<T>>,
|
|
|
|
polarity: InputChannelPolarity,
|
|
|
|
) -> Self {
|
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = ch.number();
|
|
|
|
|
|
|
|
g.config[index].write(|w| {
|
|
|
|
match polarity {
|
|
|
|
InputChannelPolarity::HiToLo => w.mode().event().polarity().hi_to_lo(),
|
|
|
|
InputChannelPolarity::LoToHi => w.mode().event().polarity().lo_to_hi(),
|
|
|
|
InputChannelPolarity::None => w.mode().event().polarity().none(),
|
|
|
|
InputChannelPolarity::Toggle => w.mode().event().polarity().toggle(),
|
|
|
|
};
|
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
|
|
|
w.port().bit(match pin.port() {
|
|
|
|
Port::Port0 => false,
|
|
|
|
Port::Port1 => true,
|
|
|
|
});
|
|
|
|
unsafe { w.psel().bits(pin.pin()) }
|
|
|
|
});
|
|
|
|
|
|
|
|
CHANNEL_SIGNALS[index].reset();
|
|
|
|
|
|
|
|
// Enable interrupt
|
|
|
|
g.intenset.write(|w| unsafe { w.bits(1 << index) });
|
|
|
|
|
|
|
|
InputChannel { ch, pin }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn free(self) -> (C, GpioPin<Input<T>>) {
|
|
|
|
let m = ManuallyDrop::new(self);
|
|
|
|
let ch = unsafe { ptr::read(&m.ch) };
|
|
|
|
let pin = unsafe { ptr::read(&m.pin) };
|
|
|
|
(ch, pin)
|
|
|
|
}
|
|
|
|
|
2020-11-08 17:59:31 +00:00
|
|
|
pub async fn wait(&self) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let index = self.ch.number();
|
|
|
|
CHANNEL_SIGNALS[index].wait().await;
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
2020-10-19 19:18:13 +00:00
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
pub fn pin(&self) -> &GpioPin<Input<T>> {
|
2020-10-19 19:18:13 +00:00
|
|
|
&self.pin
|
|
|
|
}
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
pub struct OutputChannel<C: ChannelID, T> {
|
|
|
|
ch: C,
|
|
|
|
pin: GpioPin<Output<T>>,
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
impl<C: ChannelID, T> Drop for OutputChannel<C, T> {
|
2020-09-29 17:18:52 +00:00
|
|
|
fn drop(&mut self) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
g.config[index].write(|w| w.mode().disabled());
|
|
|
|
g.intenclr.write(|w| unsafe { w.bits(1 << index) });
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 22:56:17 +00:00
|
|
|
impl<C: ChannelID, T> OutputChannel<C, T> {
|
|
|
|
pub fn new(
|
|
|
|
_gpiote: Gpiote,
|
|
|
|
ch: C,
|
|
|
|
pin: GpioPin<Output<T>>,
|
|
|
|
level: Level,
|
|
|
|
polarity: OutputChannelPolarity,
|
|
|
|
) -> Self {
|
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = ch.number();
|
|
|
|
|
|
|
|
g.config[index].write(|w| {
|
|
|
|
w.mode().task();
|
|
|
|
match level {
|
|
|
|
Level::High => w.outinit().high(),
|
|
|
|
Level::Low => w.outinit().low(),
|
|
|
|
};
|
|
|
|
match polarity {
|
|
|
|
OutputChannelPolarity::Set => w.polarity().lo_to_hi(),
|
|
|
|
OutputChannelPolarity::Clear => w.polarity().hi_to_lo(),
|
|
|
|
OutputChannelPolarity::Toggle => w.polarity().toggle(),
|
|
|
|
};
|
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
|
|
|
w.port().bit(match pin.port() {
|
|
|
|
Port::Port0 => false,
|
|
|
|
Port::Port1 => true,
|
|
|
|
});
|
|
|
|
unsafe { w.psel().bits(pin.pin()) }
|
|
|
|
});
|
|
|
|
|
|
|
|
// Enable interrupt
|
|
|
|
g.intenset.write(|w| unsafe { w.bits(1 << index) });
|
|
|
|
|
|
|
|
OutputChannel { ch, pin }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn free(self) -> (C, GpioPin<Output<T>>) {
|
|
|
|
let m = ManuallyDrop::new(self);
|
|
|
|
let ch = unsafe { ptr::read(&m.ch) };
|
|
|
|
let pin = unsafe { ptr::read(&m.pin) };
|
|
|
|
(ch, pin)
|
|
|
|
}
|
|
|
|
|
2020-09-29 17:18:52 +00:00
|
|
|
/// Triggers `task out` (as configured with task_out_polarity, defaults to Toggle).
|
|
|
|
pub fn out(&self) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
|
|
|
|
g.tasks_out[index].write(|w| unsafe { w.bits(1) });
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
/// Triggers `task set` (set associated pin high).
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
pub fn set(&self) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
|
|
|
|
g.tasks_set[index].write(|w| unsafe { w.bits(1) });
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
/// Triggers `task clear` (set associated pin low).
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
pub fn clear(&self) {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
|
|
|
|
g.tasks_clr[index].write(|w| unsafe { w.bits(1) });
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns reference to task_out endpoint for PPI.
|
|
|
|
pub fn task_out(&self) -> &Reg<u32, _TASKS_OUT> {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
|
|
|
|
&g.tasks_out[index]
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns reference to task_clr endpoint for PPI.
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
pub fn task_clr(&self) -> &Reg<u32, _TASKS_CLR> {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
|
|
|
|
&g.tasks_clr[index]
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns reference to task_set endpoint for PPI.
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
pub fn task_set(&self) -> &Reg<u32, _TASKS_SET> {
|
2021-02-04 22:56:17 +00:00
|
|
|
let g = unsafe { &*GPIOTE::ptr() };
|
|
|
|
let index = self.ch.number();
|
|
|
|
|
|
|
|
&g.tasks_set[index]
|
2020-09-29 17:18:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-08 17:59:31 +00:00
|
|
|
struct BitIter(u32);
|
|
|
|
|
|
|
|
impl Iterator for BitIter {
|
|
|
|
type Item = u32;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
match self.0.trailing_zeros() {
|
|
|
|
32 => None,
|
|
|
|
b => {
|
|
|
|
self.0 &= !(1 << b);
|
|
|
|
Some(b)
|
|
|
|
}
|
2020-09-22 22:32:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-04 22:56:17 +00:00
|
|
|
|
|
|
|
pub struct GpiotePin<T> {
|
|
|
|
pin: GpioPin<Input<T>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Unpin for GpiotePin<T> {}
|
|
|
|
|
|
|
|
impl<T> GpiotePin<T> {
|
|
|
|
pub fn new(_gpiote: Gpiote, pin: GpioPin<Input<T>>) -> Self {
|
|
|
|
Self { pin }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> WaitForHigh for GpiotePin<T> {
|
|
|
|
type Future<'a> = PortInputFuture<'a, T>;
|
|
|
|
|
|
|
|
fn wait_for_high<'a>(self: Pin<&'a mut Self>) -> Self::Future<'a> {
|
|
|
|
PortInputFuture {
|
|
|
|
pin: &self.get_mut().pin,
|
|
|
|
polarity: PortInputPolarity::High,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> WaitForLow for GpiotePin<T> {
|
|
|
|
type Future<'a> = PortInputFuture<'a, T>;
|
|
|
|
|
|
|
|
fn wait_for_low<'a>(self: Pin<&'a mut Self>) -> Self::Future<'a> {
|
|
|
|
PortInputFuture {
|
|
|
|
pin: &self.get_mut().pin,
|
|
|
|
polarity: PortInputPolarity::Low,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Deref for GpiotePin<T> {
|
|
|
|
type Target = GpioPin<Input<T>>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.pin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum PortInputPolarity {
|
|
|
|
High,
|
|
|
|
Low,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PortInputFuture<'a, T> {
|
|
|
|
pin: &'a GpioPin<Input<T>>,
|
|
|
|
polarity: PortInputPolarity,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, T> Drop for PortInputFuture<'a, T> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
pin_conf(&self.pin).modify(|_, w| w.sense().disabled());
|
|
|
|
PORT_SIGNALS[pin_num(&self.pin)].reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, T> Future for PortInputFuture<'a, T> {
|
|
|
|
type Output = ();
|
|
|
|
|
|
|
|
fn poll(self: core::pin::Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
pin_conf(&self.pin).modify(|_, w| match self.polarity {
|
|
|
|
PortInputPolarity::Low => w.sense().low(),
|
|
|
|
PortInputPolarity::High => w.sense().high(),
|
|
|
|
});
|
|
|
|
PORT_SIGNALS[pin_num(&self.pin)].poll_wait(cx)
|
|
|
|
}
|
|
|
|
}
|