pub enum D10 {
PB5(PB5<Alternate<13, PushPull>>),
PD6(PD6<Alternate<13, PushPull>>),
PI3(PI3<Alternate<13, PushPull>>),
}
Variants§
PB5(PB5<Alternate<13, PushPull>>)
PD6(PD6<Alternate<13, PushPull>>)
PI3(PI3<Alternate<13, PushPull>>)
Trait Implementations§
Source§impl ExtiPin for D10
impl ExtiPin for D10
Source§fn make_interrupt_source(&mut self, _syscfg: &mut SysCfg)
fn make_interrupt_source(&mut self, _syscfg: &mut SysCfg)
Make corresponding EXTI line sensitive to this pin
Source§fn trigger_on_edge(&mut self, _exti: &mut EXTI, _level: Edge)
fn trigger_on_edge(&mut self, _exti: &mut EXTI, _level: Edge)
Generate interrupt on rising edge, falling edge or both
Source§fn enable_interrupt(&mut self, _exti: &mut EXTI)
fn enable_interrupt(&mut self, _exti: &mut EXTI)
Enable external interrupts from this pin.
Source§fn disable_interrupt(&mut self, _exti: &mut EXTI)
fn disable_interrupt(&mut self, _exti: &mut EXTI)
Disable external interrupts from this pin
Source§fn clear_interrupt_pending_bit(&mut self)
fn clear_interrupt_pending_bit(&mut self)
Clear the interrupt pending bit for this pin
Source§fn check_interrupt(&self) -> bool
fn check_interrupt(&self) -> bool
Reads the interrupt pending bit for this pin
Source§impl PinPull for D10
impl PinPull for D10
Source§fn set_internal_resistor(&mut self, _pull: Pull)
fn set_internal_resistor(&mut self, _pull: Pull)
Set the internal pull-up and pull-down resistor
fn internal_resistor(self, resistor: Pull) -> Self
Auto Trait Implementations§
impl Freeze for D10
impl RefUnwindSafe for D10
impl Send for D10
impl Sync for D10
impl Unpin for D10
impl UnwindSafe for D10
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more