#[repr(C)]
pub struct NRF_SAADC_Type {
Show 28 fields pub TASKS_START: u32, pub TASKS_SAMPLE: u32, pub TASKS_STOP: u32, pub TASKS_CALIBRATEOFFSET: u32, pub RESERVED: [u32; 60], pub EVENTS_STARTED: u32, pub EVENTS_END: u32, pub EVENTS_DONE: u32, pub EVENTS_RESULTDONE: u32, pub EVENTS_CALIBRATEDONE: u32, pub EVENTS_STOPPED: u32, pub EVENTS_CH: [SAADC_EVENTS_CH_Type; 8], pub RESERVED1: [u32; 106], pub INTEN: u32, pub INTENSET: u32, pub INTENCLR: u32, pub RESERVED2: [u32; 61], pub STATUS: u32, pub RESERVED3: [u32; 63], pub ENABLE: u32, pub RESERVED4: [u32; 3], pub CH: [SAADC_CH_Type; 8], pub RESERVED5: [u32; 24], pub RESOLUTION: u32, pub OVERSAMPLE: u32, pub SAMPLERATE: u32, pub RESERVED6: [u32; 12], pub RESULT: SAADC_RESULT_Type,
}
Expand description

@brief Successive approximation register (SAR) analog-to-digital converter (SAADC)

Fields§

§TASKS_START: u32

< (@ 0x00000000) Starts the SAADC and prepares the result buffer in RAM

§TASKS_SAMPLE: u32

< (@ 0x00000004) Takes one SAADC sample

§TASKS_STOP: u32

< (@ 0x00000008) Stops the SAADC and terminates all on-going conversions

§TASKS_CALIBRATEOFFSET: u32

< (@ 0x0000000C) Starts offset auto-calibration

§RESERVED: [u32; 60]§EVENTS_STARTED: u32

< (@ 0x00000100) The SAADC has started

§EVENTS_END: u32

< (@ 0x00000104) The SAADC has filled up the result buffer

§EVENTS_DONE: u32

< (@ 0x00000108) A conversion task has been completed. Depending on the configuration, multiple conversions might be needed for a result to be transferred to RAM.

§EVENTS_RESULTDONE: u32

< (@ 0x0000010C) Result ready for transfer to RAM

§EVENTS_CALIBRATEDONE: u32

< (@ 0x00000110) Calibration is complete

§EVENTS_STOPPED: u32

< (@ 0x00000114) The SAADC has stopped

§EVENTS_CH: [SAADC_EVENTS_CH_Type; 8]

< (@ 0x00000118) Peripheral events.

§RESERVED1: [u32; 106]§INTEN: u32

< (@ 0x00000300) Enable or disable interrupt

§INTENSET: u32

< (@ 0x00000304) Enable interrupt

§INTENCLR: u32

< (@ 0x00000308) Disable interrupt

§RESERVED2: [u32; 61]§STATUS: u32

< (@ 0x00000400) Status

§RESERVED3: [u32; 63]§ENABLE: u32

< (@ 0x00000500) Enable or disable SAADC

§RESERVED4: [u32; 3]§CH: [SAADC_CH_Type; 8]

< (@ 0x00000510) Unspecified

§RESERVED5: [u32; 24]§RESOLUTION: u32

< (@ 0x000005F0) Resolution configuration

§OVERSAMPLE: u32

< (@ 0x000005F4) Oversampling configuration. The RESOLUTION is applied before averaging, thus for high OVERSAMPLE a higher RESOLUTION should be used.

§SAMPLERATE: u32

< (@ 0x000005F8) Controls normal or continuous sample rate

§RESERVED6: [u32; 12]§RESULT: SAADC_RESULT_Type

< (@ 0x0000062C) RESULT EasyDMA channel

Trait Implementations§

source§

impl Clone for NRF_SAADC_Type

source§

fn clone(&self) -> NRF_SAADC_Type

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NRF_SAADC_Type

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for NRF_SAADC_Type

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for NRF_SAADC_Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.