Embassy
stm32-metapac

Crates

git

Versions

stm32l552ze

Flavors

Struct stm32_metapac::sdmmc::regs::Power

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

SDMMC power control register

Tuple Fields§

§0: u32

Implementations§

§

impl Power

pub const fn pwrctrl(&self) -> u8

SDMMC state control bits. These bits can only be written when the SDMMC is not in the power-on state (PWRCTRL?11). These bits are used to define the functional state of the SDMMC signals: Any further write will be ignored, PWRCTRL value will keep 11.

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

SDMMC state control bits. These bits can only be written when the SDMMC is not in the power-on state (PWRCTRL?11). These bits are used to define the functional state of the SDMMC signals: Any further write will be ignored, PWRCTRL value will keep 11.

pub const fn vswitch(&self) -> bool

Voltage switch sequence start. This bit is used to start the timing critical section of the voltage switch sequence:

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

Voltage switch sequence start. This bit is used to start the timing critical section of the voltage switch sequence:

pub const fn vswitchen(&self) -> bool

Voltage switch procedure enable. This bit can only be written by firmware when CPSM is disabled (CPSMEN = 0). This bit is used to stop the SDMMC_CK after the voltage switch command response:

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

Voltage switch procedure enable. This bit can only be written by firmware when CPSM is disabled (CPSMEN = 0). This bit is used to stop the SDMMC_CK after the voltage switch command response:

pub const fn dirpol(&self) -> bool

Data and command direction signals polarity selection. This bit can only be written when the SDMMC is in the power-off state (PWRCTRL = 00).

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

Data and command direction signals polarity selection. This bit can only be written when the SDMMC is in the power-off state (PWRCTRL = 00).

Trait Implementations§

§

impl Clone for Power

§

fn clone(&self) -> Power

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 Power

§

fn default() -> Power

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

impl PartialEq for Power

§

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

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

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

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

impl Copy for Power

§

impl Eq for Power

§

impl StructuralEq for Power

§

impl StructuralPartialEq for Power

Auto Trait Implementations§

§

impl RefUnwindSafe for Power

§

impl Send for Power

§

impl Sync for Power

§

impl Unpin for Power

§

impl UnwindSafe for Power

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.