Trait lpc82x_hal::syscon::WakeUpInterrupt[][src]

pub trait WakeUpInterrupt {
    fn enable(w: &mut W) -> &mut W;
fn disable(w: &mut W) -> &mut W; }

Internal trait used to configure interrupt wake-up

This trait is an internal implementation detail and should neither be implemented nor used outside of LPC82x HAL. Any changes to this trait won't be considered breaking changes.

Please refer to syscon::Handle::enable_interrupt_wakeup and syscon::Handle::disable_interrupt_wakeup for the public API that uses this trait.

Required Methods

Internal method to configure interrupt wakeup behavior

Internal method to configure interrupt wakeup behavior

Implementors