Embassy
stm32-metapac

Crates

git

Versions

stm32h563vg

Flavors

Struct stm32_metapac::pwr::regs::Pmcr

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

PWR power mode control register.

Tuple Fields§

§0: u32

Implementations§

§

impl Pmcr

pub const fn lpms(&self) -> Lpms

low-power mode selection This bit defines the Deepsleep mode.

pub fn set_lpms(&mut self, val: Lpms)

low-power mode selection This bit defines the Deepsleep mode.

pub const fn svos(&self) -> Svos

system Stop mode voltage scaling selection These bits control the V_CORE voltage level in system Stop mode, to obtain the best trade-off between power consumption and performance.

pub fn set_svos(&mut self, val: Svos)

system Stop mode voltage scaling selection These bits control the V_CORE voltage level in system Stop mode, to obtain the best trade-off between power consumption and performance.

pub const fn cssf(&self) -> bool

clear Standby and Stop flags (always read as 0) This bit is cleared to 0 by hardware.

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

clear Standby and Stop flags (always read as 0) This bit is cleared to 0 by hardware.

pub const fn flps(&self) -> PowerModeInStopMode

Flash memory low-power mode in Stop mode This bit is used to obtain the best trade-off between low-power consumption and restart time when exiting from Stop mode. When it is set, the Flash memory enters low-power mode when the CPU domain is in Stop mode. Note: When system enters stop mode with SVOS5 enabled, Flash memory is automatically forced in low-power mode.

pub fn set_flps(&mut self, val: PowerModeInStopMode)

Flash memory low-power mode in Stop mode This bit is used to obtain the best trade-off between low-power consumption and restart time when exiting from Stop mode. When it is set, the Flash memory enters low-power mode when the CPU domain is in Stop mode. Note: When system enters stop mode with SVOS5 enabled, Flash memory is automatically forced in low-power mode.

pub const fn booste(&self) -> bool

analog switch V_BOOST control This bit enables the booster to guarantee the analog switch AC performance when the V_DD supply voltage is below 2.7 V (reduction of the total harmonic distortion to have the same switch performance over the full supply voltage range) The V_DD supply voltage can be monitored through the PVD and the PLS bits.

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

analog switch V_BOOST control This bit enables the booster to guarantee the analog switch AC performance when the V_DD supply voltage is below 2.7 V (reduction of the total harmonic distortion to have the same switch performance over the full supply voltage range) The V_DD supply voltage can be monitored through the PVD and the PLS bits.

pub const fn avd_ready(&self) -> bool

analog voltage ready This bit is only used when the analog switch boost needs to be enabled (see BOOSTE bit). It must be set by software when the expected V_DDA analog supply level is available. The correct analog supply level is indicated by the AVDO bit (PWR_VMSR register) after setting the AVDEN bit (PWR_VMCR register) and selecting the supply level to be monitored. (ALS bits).

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

analog voltage ready This bit is only used when the analog switch boost needs to be enabled (see BOOSTE bit). It must be set by software when the expected V_DDA analog supply level is available. The correct analog supply level is indicated by the AVDO bit (PWR_VMSR register) after setting the AVDEN bit (PWR_VMCR register) and selecting the supply level to be monitored. (ALS bits).

pub const fn ethernetso(&self) -> ShutOff

ETHERNET RAM shut-off in Stop mode.

pub fn set_ethernetso(&mut self, val: ShutOff)

ETHERNET RAM shut-off in Stop mode.

pub const fn sram3so(&self) -> ShutOff

AHB SRAM3 shut-off in Stop mode.

pub fn set_sram3so(&mut self, val: ShutOff)

AHB SRAM3 shut-off in Stop mode.

pub const fn sram2_16so(&self) -> ShutOff

AHB SRAM2 16-Kbyte shut-off in Stop mode.

pub fn set_sram2_16so(&mut self, val: ShutOff)

AHB SRAM2 16-Kbyte shut-off in Stop mode.

pub const fn sram2_48so(&self) -> ShutOff

AHB SRAM2 48-Kbyte shut-off in Stop mode.

pub fn set_sram2_48so(&mut self, val: ShutOff)

AHB SRAM2 48-Kbyte shut-off in Stop mode.

pub const fn sram1so(&self) -> ShutOff

AHB SRAM1 shut-off in Stop mode.

pub fn set_sram1so(&mut self, val: ShutOff)

AHB SRAM1 shut-off in Stop mode.

Trait Implementations§

§

impl Clone for Pmcr

§

fn clone(&self) -> Pmcr

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 Pmcr

§

fn default() -> Pmcr

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

impl PartialEq for Pmcr

§

fn eq(&self, other: &Pmcr) -> 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 Pmcr

§

impl Eq for Pmcr

§

impl StructuralEq for Pmcr

§

impl StructuralPartialEq for Pmcr

Auto Trait Implementations§

§

impl RefUnwindSafe for Pmcr

§

impl Send for Pmcr

§

impl Sync for Pmcr

§

impl Unpin for Pmcr

§

impl UnwindSafe for Pmcr

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.