stm32-metapac

Crates

git

Versions

stm32f373c8

Flavors

Struct stm32_metapac::sdadc::regs::Cr1

#[repr(transparent)]
pub struct Cr1(pub u32);
Expand description

control register 1.

Tuple Fields§

§0: u32

Implementations§

§

impl Cr1

pub const fn eocalie(&self) -> bool

End of calibration interrupt enable.

pub fn set_eocalie(&mut self, val: bool)

End of calibration interrupt enable.

pub const fn jeocie(&self) -> bool

Injected end of conversion interrupt enable.

pub fn set_jeocie(&mut self, val: bool)

Injected end of conversion interrupt enable.

pub const fn jovrie(&self) -> bool

Injected data overrun interrupt enable.

pub fn set_jovrie(&mut self, val: bool)

Injected data overrun interrupt enable.

pub const fn reocie(&self) -> bool

Regular end of conversion interrupt enable.

pub fn set_reocie(&mut self, val: bool)

Regular end of conversion interrupt enable.

pub const fn rovrie(&self) -> bool

Regular data overrun interrupt enable.

pub fn set_rovrie(&mut self, val: bool)

Regular data overrun interrupt enable.

pub const fn refv(&self) -> u8

Reference voltage selection.

pub fn set_refv(&mut self, val: u8)

Reference voltage selection.

pub const fn slowck(&self) -> bool

Slow clock mode enable.

pub fn set_slowck(&mut self, val: bool)

Slow clock mode enable.

pub const fn sbi(&self) -> bool

Enter Standby mode when idle.

pub fn set_sbi(&mut self, val: bool)

Enter Standby mode when idle.

pub const fn pdi(&self) -> bool

Enter power down mode when idle.

pub fn set_pdi(&mut self, val: bool)

Enter power down mode when idle.

pub const fn jsync(&self) -> bool

Launch a injected conversion synchronously with SDADC1.

pub fn set_jsync(&mut self, val: bool)

Launch a injected conversion synchronously with SDADC1.

pub const fn rsync(&self) -> bool

Launch regular conversion synchronously with SDADC1.

pub fn set_rsync(&mut self, val: bool)

Launch regular conversion synchronously with SDADC1.

pub const fn jdmaen(&self) -> bool

DMA channel enabled to read data for the injected channel group.

pub fn set_jdmaen(&mut self, val: bool)

DMA channel enabled to read data for the injected channel group.

pub const fn rdmaen(&self) -> bool

DMA channel enabled to read data for the regular channel.

pub fn set_rdmaen(&mut self, val: bool)

DMA channel enabled to read data for the regular channel.

pub const fn init(&self) -> bool

Initialization mode request.

pub fn set_init(&mut self, val: bool)

Initialization mode request.

Trait Implementations§

§

impl Clone for Cr1

§

fn clone(&self) -> Cr1

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
§

impl Default for Cr1

§

fn default() -> Cr1

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

impl PartialEq for Cr1

§

fn eq(&self, other: &Cr1) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for Cr1

§

impl Eq for Cr1

§

impl StructuralPartialEq for Cr1

Auto Trait Implementations§

§

impl Freeze for Cr1

§

impl RefUnwindSafe for Cr1

§

impl Send for Cr1

§

impl Sync for Cr1

§

impl Unpin for Cr1

§

impl UnwindSafe for Cr1

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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>,

source§

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>,

source§

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.