diff options
author | Damien George <damien.p.george@gmail.com> | 2019-04-12 11:31:22 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-04-12 11:32:24 +1000 |
commit | fd112239d6b7e6ebeb78f62e3b02aa6640a88772 (patch) | |
tree | a2fb6ebae8e998eb8e617225d0536e561d038108 | |
parent | 3c9f78b048fade80f71cca25999ee2541a80034e (diff) |
stm32/rtc: Remove non-ASCII mu-character from source code comment.
And fix a typo in the comment on this line.
-rw-r--r-- | ports/stm32/rtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/rtc.c b/ports/stm32/rtc.c index 8e56e25f9..4b9fbbda5 100644 --- a/ports/stm32/rtc.c +++ b/ports/stm32/rtc.c @@ -52,7 +52,7 @@ static mp_uint_t rtc_info; // Note: LSI is around (32KHz), these dividers should work either way // ck_spre(1Hz) = RTCCLK(LSE) /(uwAsynchPrediv + 1)*(uwSynchPrediv + 1) // modify RTC_ASYNCH_PREDIV & RTC_SYNCH_PREDIV in board/<BN>/mpconfigport.h to change sub-second ticks -// default is 3906.25 µs, min is ~30.52 µs (will increas Ivbat by ~500nA) +// default is 3906.25 us, min is ~30.52 us (will increase Ivbat by ~500nA) #ifndef RTC_ASYNCH_PREDIV #define RTC_ASYNCH_PREDIV (0x7f) #endif |