Struct Cr
#[repr(transparent)]pub struct Cr(pub u32);
Expand description
RCC clock control register
Tuple Fields§
§0: u32
Implementations§
§impl Cr
impl Cr
pub const fn sysdiv(&self) -> Sysdiv
pub const fn sysdiv(&self) -> Sysdiv
System clock division factor This bitfield controlled by software sets the division factor of the system clock divider to produce SYSCLK clock:
pub fn set_sysdiv(&mut self, val: Sysdiv)
pub fn set_sysdiv(&mut self, val: Sysdiv)
System clock division factor This bitfield controlled by software sets the division factor of the system clock divider to produce SYSCLK clock:
pub const fn hsikerdiv(&self) -> Hsikerdiv
pub const fn hsikerdiv(&self) -> Hsikerdiv
HSI48 kernel clock division factor This bitfield controlled by software sets the division factor of the kernel clock divider to produce HSIKER clock:
pub fn set_hsikerdiv(&mut self, val: Hsikerdiv)
pub fn set_hsikerdiv(&mut self, val: Hsikerdiv)
HSI48 kernel clock division factor This bitfield controlled by software sets the division factor of the kernel clock divider to produce HSIKER clock:
pub const fn hsion(&self) -> bool
pub const fn hsion(&self) -> bool
HSI48 clock enable Set and cleared by software and hardware, with hardware taking priority. Kept low by hardware as long as the device is in a low-power mode. Kept high by hardware as long as the system is clocked with a clock derived from HSI48. This includes the exit from low-power modes and the system clock fall-back to HSI48 upon failing HSE oscillator clock selected as system clock source.
pub fn set_hsion(&mut self, val: bool)
pub fn set_hsion(&mut self, val: bool)
HSI48 clock enable Set and cleared by software and hardware, with hardware taking priority. Kept low by hardware as long as the device is in a low-power mode. Kept high by hardware as long as the system is clocked with a clock derived from HSI48. This includes the exit from low-power modes and the system clock fall-back to HSI48 upon failing HSE oscillator clock selected as system clock source.
pub const fn hsikeron(&self) -> bool
pub const fn hsikeron(&self) -> bool
HSI48 always-enable for peripheral kernels. Set and cleared by software. Setting the bit activates the HSI48 oscillator in Run and Stop modes, regardless of the HSION bit state. The HSI48 clock can only feed USART1, USART2, and I2C1 peripherals configured with HSI48 as kernel clock. Note: Keeping the HSI48 active in Stop mode allows speeding up the serial interface communication as the HSI48 clock is ready immediately upon exiting Stop mode.
pub fn set_hsikeron(&mut self, val: bool)
pub fn set_hsikeron(&mut self, val: bool)
HSI48 always-enable for peripheral kernels. Set and cleared by software. Setting the bit activates the HSI48 oscillator in Run and Stop modes, regardless of the HSION bit state. The HSI48 clock can only feed USART1, USART2, and I2C1 peripherals configured with HSI48 as kernel clock. Note: Keeping the HSI48 active in Stop mode allows speeding up the serial interface communication as the HSI48 clock is ready immediately upon exiting Stop mode.
pub const fn hsirdy(&self) -> bool
pub const fn hsirdy(&self) -> bool
HSI48 clock ready flag Set by hardware when the HSI48 oscillator is enabled through HSION and ready to use (stable). Note: Upon clearing HSION, HSIRDY goes low after six HSI48 clock cycles.
pub fn set_hsirdy(&mut self, val: bool)
pub fn set_hsirdy(&mut self, val: bool)
HSI48 clock ready flag Set by hardware when the HSI48 oscillator is enabled through HSION and ready to use (stable). Note: Upon clearing HSION, HSIRDY goes low after six HSI48 clock cycles.
pub const fn hsidiv(&self) -> Hsidiv
pub const fn hsidiv(&self) -> Hsidiv
HSI48 clock division factor This bitfield controlled by software sets the division factor of the HSI48 clock divider to produce HSISYS clock:
pub fn set_hsidiv(&mut self, val: Hsidiv)
pub fn set_hsidiv(&mut self, val: Hsidiv)
HSI48 clock division factor This bitfield controlled by software sets the division factor of the HSI48 clock divider to produce HSISYS clock:
pub const fn hseon(&self) -> bool
pub const fn hseon(&self) -> bool
HSE clock enable Set and cleared by software. Cleared by hardware to stop the HSE oscillator when entering Stop, or Standby, or Shutdown mode. This bit cannot be cleared if the HSE oscillator is used directly or indirectly as the system clock.
pub fn set_hseon(&mut self, val: bool)
pub fn set_hseon(&mut self, val: bool)
HSE clock enable Set and cleared by software. Cleared by hardware to stop the HSE oscillator when entering Stop, or Standby, or Shutdown mode. This bit cannot be cleared if the HSE oscillator is used directly or indirectly as the system clock.
pub const fn hserdy(&self) -> bool
pub const fn hserdy(&self) -> bool
HSE clock ready flag Set by hardware to indicate that the HSE oscillator is stable and ready for use. Note: Upon clearing HSEON, HSERDY goes low after six HSE clock cycles.
pub fn set_hserdy(&mut self, val: bool)
pub fn set_hserdy(&mut self, val: bool)
HSE clock ready flag Set by hardware to indicate that the HSE oscillator is stable and ready for use. Note: Upon clearing HSEON, HSERDY goes low after six HSE clock cycles.
pub const fn hsebyp(&self) -> bool
pub const fn hsebyp(&self) -> bool
HSE crystal oscillator bypass Set and cleared by software. When the bit is set, the internal HSE oscillator is bypassed for use of an external clock. The external clock must then be enabled with the HSEON bit set. Write access to the bit is only effective when the HSE oscillator is disabled.
pub fn set_hsebyp(&mut self, val: bool)
pub fn set_hsebyp(&mut self, val: bool)
HSE crystal oscillator bypass Set and cleared by software. When the bit is set, the internal HSE oscillator is bypassed for use of an external clock. The external clock must then be enabled with the HSEON bit set. Write access to the bit is only effective when the HSE oscillator is disabled.
pub const fn csson(&self) -> bool
pub const fn csson(&self) -> bool
Clock security system enable Set by software to enable the clock security system. When the bit is set, the clock detector is enabled by hardware when the HSE oscillator is ready, and disabled by hardware if a HSE clock failure is detected. The bit is cleared by hardware upon reset.
pub fn set_csson(&mut self, val: bool)
pub fn set_csson(&mut self, val: bool)
Clock security system enable Set by software to enable the clock security system. When the bit is set, the clock detector is enabled by hardware when the HSE oscillator is ready, and disabled by hardware if a HSE clock failure is detected. The bit is cleared by hardware upon reset.