pub struct RtcSleepConfig(pub u32);

Tuple Fields§

§0: u32

Implementations§

source§

impl RtcSleepConfig

source

pub fn lslp_mem_inf_fpu(&self) -> bool

force normal voltage in sleep mode (digital domain memory)

source

pub fn rtc_mem_inf_fpu(&self) -> bool

force normal voltage in sleep mode (RTC memory)

source

pub fn rtc_mem_inf_follow_cpu(&self) -> bool

keep low voltage in sleep mode (even if ULP/touch is used)

source

pub fn rtc_fastmem_pd_en(&self) -> bool

power down RTC fast memory

source

pub fn rtc_slowmem_pd_en(&self) -> bool

power down RTC slow memory

source

pub fn rtc_peri_pd_en(&self) -> bool

power down RTC peripherals

source

pub fn wifi_pd_en(&self) -> bool

power down WiFi

source

pub fn int_8m_pd_en(&self) -> bool

Power down Internal 8M oscillator

source

pub fn rom_mem_pd_en(&self) -> bool

power down main RAM and ROM

source

pub fn deep_slp(&self) -> bool

power down digital domain

source

pub fn wdt_flashboot_mod_en(&self) -> bool

enable WDT flashboot mode

source

pub fn dig_dbias_wak(&self) -> u8

bias for digital domain, in active mode

source

pub fn dig_dbias_slp(&self) -> u8

bias for digital domain, in sleep mode

source

pub fn rtc_dbias_wak(&self) -> u8

bias for RTC domain, in active mode

source

pub fn rtc_dbias_slp(&self) -> u8

bias for RTC domain, in sleep mode

source

pub fn lslp_meminf_pd(&self) -> bool

remove all peripheral force power up flags

source

pub fn vddsdio_pd_en(&self) -> bool

power down VDDSDIO regulator

source

pub fn xtal_fpu(&self) -> bool

keep main XTAL powered up in sleep

source

pub fn deep_slp_reject(&self) -> bool

enable deep sleep reject

source

pub fn light_slp_reject(&self) -> bool

enable light sleep reject

source

pub fn set_lslp_mem_inf_fpu(&mut self, value: bool)

force normal voltage in sleep mode (digital domain memory)

source

pub fn set_rtc_mem_inf_fpu(&mut self, value: bool)

force normal voltage in sleep mode (RTC memory)

source

pub fn set_rtc_mem_inf_follow_cpu(&mut self, value: bool)

keep low voltage in sleep mode (even if ULP/touch is used)

source

pub fn set_rtc_fastmem_pd_en(&mut self, value: bool)

power down RTC fast memory

source

pub fn set_rtc_slowmem_pd_en(&mut self, value: bool)

power down RTC slow memory

source

pub fn set_rtc_peri_pd_en(&mut self, value: bool)

power down RTC peripherals

source

pub fn set_wifi_pd_en(&mut self, value: bool)

power down WiFi

source

pub fn set_int_8m_pd_en(&mut self, value: bool)

Power down Internal 8M oscillator

source

pub fn set_rom_mem_pd_en(&mut self, value: bool)

power down main RAM and ROM

source

pub fn set_deep_slp(&mut self, value: bool)

power down digital domain

source

pub fn set_wdt_flashboot_mod_en(&mut self, value: bool)

enable WDT flashboot mode

source

pub fn set_dig_dbias_wak(&mut self, value: u8)

bias for digital domain, in active mode

source

pub fn set_dig_dbias_slp(&mut self, value: u8)

bias for digital domain, in sleep mode

source

pub fn set_rtc_dbias_wak(&mut self, value: u8)

bias for RTC domain, in active mode

source

pub fn set_rtc_dbias_slp(&mut self, value: u8)

bias for RTC domain, in sleep mode

source

pub fn set_lslp_meminf_pd(&mut self, value: bool)

remove all peripheral force power up flags

source

pub fn set_vddsdio_pd_en(&mut self, value: bool)

power down VDDSDIO regulator

source

pub fn set_xtal_fpu(&mut self, value: bool)

keep main XTAL powered up in sleep

source

pub fn set_deep_slp_reject(&mut self, value: bool)

enable deep sleep reject

source

pub fn set_light_slp_reject(&mut self, value: bool)

enable light sleep reject

source§

impl RtcSleepConfig

Trait Implementations§

source§

impl<T> BitRange<T> for RtcSleepConfig
where u32: BitRange<T>,

source§

fn bit_range(&self, msb: usize, lsb: usize) -> T

Get a range of bits.
source§

impl<T> BitRangeMut<T> for RtcSleepConfig
where u32: BitRangeMut<T>,

source§

fn set_bit_range(&mut self, msb: usize, lsb: usize, value: T)

Set a range of bits.
source§

impl Clone for RtcSleepConfig

source§

fn clone(&self) -> RtcSleepConfig

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 RtcSleepConfig

source§

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

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

impl Default for RtcSleepConfig

source§

fn default() -> RtcSleepConfig

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

impl Copy for RtcSleepConfig

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> Bit for T
where T: BitRange<u8>,

source§

fn bit(&self, bit: usize) -> bool

Get a single bit.
source§

impl<T> BitMut for T
where T: BitRangeMut<u8>,

source§

fn set_bit(&mut self, bit: usize, value: bool)

Set a single bit.
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.