Enum stm32wlxx_hal::rcc::Vos
source · #[repr(u8)]pub enum Vos {
V1_2 = 1,
V1_0 = 2,
}
Expand description
Voltage scaling
Variants§
V1_2 = 1
High-performance range (range 1)
- The main regulator provides a typical output voltage at 1.2 V.
- The system clock frequency can be up to 64 MHz.
- The Flash memory access time for read access is minimum.
- Write and erase operations are possible.
V1_0 = 2
Low-power range (range 2)
- The main regulator provides a typical output voltage at 1.0 V.
- The system clock frequency can be up to 16 MHz.
- The Flash memory access time for a read access is increased as compared to range 1.
- Write and erase operations are possible.
Trait Implementations§
impl Copy for Vos
impl Eq for Vos
impl StructuralEq for Vos
impl StructuralPartialEq for Vos
Auto Trait Implementations§
impl RefUnwindSafe for Vos
impl Send for Vos
impl Sync for Vos
impl Unpin for Vos
impl UnwindSafe for Vos
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