diff options
-rw-r--r-- | os/hal/platforms/STM32/RTCv1/rtc_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/RTCv1/rtc_lld.c b/os/hal/platforms/STM32/RTCv1/rtc_lld.c index 2876b990d..cae23525f 100644 --- a/os/hal/platforms/STM32/RTCv1/rtc_lld.c +++ b/os/hal/platforms/STM32/RTCv1/rtc_lld.c @@ -154,7 +154,7 @@ void rtc_lld_init(void){ preload = (STM32_HSICLK / 128) - 1;
#endif
- /* Selects clock source (previously enabled and stabilized.*/
+ /* Selects clock source (previously enabled and stabilized).*/
RCC->BDCR = (RCC->BDCR & ~RCC_BDCR_RTCSEL) | STM32_RTC;
/* RTC enabled regardless its previous status.*/
|