stm32/l4: set rtc clock source in rcc

This commit is contained in:
xoviat
2023-08-08 19:58:03 -05:00
parent 6fc5c608f8
commit 6a73ab1afa
2 changed files with 6 additions and 4 deletions

View File

@ -33,10 +33,7 @@ async fn main(_spawner: Spawner) {
.and_hms_opt(10, 30, 15)
.unwrap();
let mut rtc = Rtc::new(
p.RTC,
RtcConfig::default().clock_source(embassy_stm32::rtc::RtcClockSource::LSE),
);
let mut rtc = Rtc::new(p.RTC, RtcConfig::default());
info!("Got RTC! {:?}", now.timestamp());
rtc.set_datetime(now.into()).expect("datetime not set");