Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
marekjastrzebski committed Feb 23, 2024
1 parent 22c78d9 commit f1a8a56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rtc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl RtcBuilder {
///
/// If your using:
///
/// - ***LSE*** - your clock will be accurate, but it is external peripheral, so might not have it.
/// - ***LSE*** - your clock will be accurate, but it is external peripheral, so you might not have it.
///
/// - ***LSI*** - your clock might be not accurate, but if you don't need super accurate clock you can use LSI.
/// It is build in microcontroller clock source.
Expand Down Expand Up @@ -598,7 +598,7 @@ fn unlock(apb1: &mut APB1, pwr: &mut PWR) {
while pwr.cr.read().dbp().bit_is_clear() {}
}

/// Enable RTC withLow Speed Internal clock (LSI) as clock source.
/// Enable RTC with Low Speed Internal clock (LSI) as clock source.
fn enable_rtc_with_lsi(bdcr: &mut BDCR) {
bdcr.bdcr().modify(|_, w| w.bdrst().enabled());
bdcr.bdcr().modify(|_, w| {
Expand Down

0 comments on commit f1a8a56

Please sign in to comment.