[][src]Enum cc13x2_cc26x2_hal::aux_anaif::dacctl::DAC_VOUT_SELR

pub enum DAC_VOUT_SELR {
    COMPA_IN,
    COMPA_REF,
    COMPB_REF,
    NC,
    _Reserved(u8),
}

Possible values of the field DAC_VOUT_SEL

Variants

COMPA_IN

Connect to COMPA_IN analog node.

Required setting to drive external load selected in ADI_4_AUX:MUX1.COMPA_IN.

COMPA_REF

Connect to COMPA_REF analog node.

It is not possible to drive external loads connected to COMPA_REF I/O mux with this setting.

COMPB_REF

Connect to COMPB_REF analog node.

Required setting to use Comparator B.

NC

Connect to nothing

It is recommended to use NC as intermediate step when you change DAC_VOUT_SEL.

_Reserved(u8)

Reserved

Methods

impl DAC_VOUT_SELR[src]

pub fn bits(&self) -> u8[src]

Value of the field as raw bits

pub fn is_compa_in(&self) -> bool[src]

Checks if the value of the field is COMPA_IN

pub fn is_compa_ref(&self) -> bool[src]

Checks if the value of the field is COMPA_REF

pub fn is_compb_ref(&self) -> bool[src]

Checks if the value of the field is COMPB_REF

pub fn is_nc(&self) -> bool[src]

Checks if the value of the field is NC

Trait Implementations

impl Debug for DAC_VOUT_SELR[src]

impl PartialEq<DAC_VOUT_SELR> for DAC_VOUT_SELR[src]

impl Copy for DAC_VOUT_SELR[src]

impl Clone for DAC_VOUT_SELR[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self