Trait lpc82x_hal::syscon::AnalogBlock[][src]

pub trait AnalogBlock {
    fn power_up<'w>(&mut self, w: &'w mut W) -> &'w mut W;
fn power_down<'w>(&mut self, w: &'w mut W) -> &'w mut W; }

Internal trait for powering analog blocks

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::power_up and syscon::Handle::power_down for the public API that uses this trait.

Required Methods

Internal method to power up an analog block

Internal method to power down an analog block

Implementations on Foreign Types

impl<'a> AnalogBlock for ADC
[src]

impl<'a> AnalogBlock for WWDT
[src]

impl<'a> AnalogBlock for CMP
[src]

Implementors