fix low-power: APB1 needed for LSE
This commit is contained in:
@ -88,6 +88,11 @@ impl BackupDomain {
|
||||
))]
|
||||
#[allow(dead_code, unused_variables)]
|
||||
pub fn configure_ls(clock_source: RtcClockSource, lsi: bool, lse: Option<LseDrive>) {
|
||||
if lsi || lse.is_some() {
|
||||
use crate::rtc::sealed::Instance;
|
||||
crate::peripherals::RTC::enable_peripheral_clk();
|
||||
}
|
||||
|
||||
if lsi {
|
||||
#[cfg(rtc_v3u5)]
|
||||
let csr = crate::pac::RCC.bdcr();
|
||||
|
Reference in New Issue
Block a user