Struct Cfgr
#[repr(transparent)]pub struct Cfgr(pub u32);Expand description
Clock configuration register (RCC_CFGR)
Tuple Fields§
§0: u32Implementations§
§impl Cfgr
impl Cfgr
pub const fn set_adcpre(&mut self, val: Adcpre)
pub const fn set_adcpre(&mut self, val: Adcpre)
ADC prescaler
pub const fn set_pllsrc(&mut self, val: Pllsrc)
pub const fn set_pllsrc(&mut self, val: Pllsrc)
PLL entry clock source
pub const fn pllxtpre(&self) -> Pllxtpre
pub const fn pllxtpre(&self) -> Pllxtpre
HSE divider for PLL entry. Note: This bit is the same as the LSB of PREDIV in CFGR2, for compatibility with other STM32 products.
pub const fn set_pllxtpre(&mut self, val: Pllxtpre)
pub const fn set_pllxtpre(&mut self, val: Pllxtpre)
HSE divider for PLL entry. Note: This bit is the same as the LSB of PREDIV in CFGR2, for compatibility with other STM32 products.
pub const fn set_pllmul(&mut self, val: Pllmul)
pub const fn set_pllmul(&mut self, val: Pllmul)
PLL Multiplication Factor
pub const fn set_usbpre(&mut self, val: Usbpre)
pub const fn set_usbpre(&mut self, val: Usbpre)
USB prescaler
pub const fn set_i2ssrc(&mut self, val: Issrc)
pub const fn set_i2ssrc(&mut self, val: Issrc)
I2S external clock source selection
pub const fn set_mcosel(&mut self, val: Mcosel)
pub const fn set_mcosel(&mut self, val: Mcosel)
Microcontroller clock output
Trait Implementations§
impl Copy for Cfgr
impl Eq for Cfgr
impl StructuralPartialEq for Cfgr
Auto Trait Implementations§
impl Freeze for Cfgr
impl RefUnwindSafe for Cfgr
impl Send for Cfgr
impl Sync for Cfgr
impl Unpin for Cfgr
impl UnwindSafe for Cfgr
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