#[repr(u8)]pub enum Sbyos {
SBYOS_0 = 0,
SBYOS_1 = 1,
}Variants§
SBYOS_0 = 0
On-chip oscillator will not be powered down, after next entrance to STOP mode. (CCM_REF_EN_B will remain asserted - ‘0’ and cosc_pwrdown will remain de asserted - ‘0’)
SBYOS_1 = 1
On-chip oscillator will be powered down, after next entrance to STOP mode. (CCM_REF_EN_B will be deasserted - ‘1’ and cosc_pwrdown will be asserted - ‘1’). When returning from STOP mode, external oscillator will be enabled again, on-chip oscillator will return to oscillator mode, and after oscnt count, CCM will continue with the exit from the STOP mode process.
Implementations§
Trait Implementations§
Source§impl Ord for Sbyos
impl Ord for Sbyos
Source§impl PartialOrd for Sbyos
impl PartialOrd for Sbyos
impl Copy for Sbyos
impl Eq for Sbyos
impl StructuralPartialEq for Sbyos
Auto Trait Implementations§
impl Freeze for Sbyos
impl RefUnwindSafe for Sbyos
impl Send for Sbyos
impl Sync for Sbyos
impl Unpin for Sbyos
impl UnwindSafe for Sbyos
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more