diff options
-rw-r--r-- | os/hal/src/rtc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/src/rtc.c b/os/hal/src/rtc.c index bd934b11b..8f9025364 100644 --- a/os/hal/src/rtc.c +++ b/os/hal/src/rtc.c @@ -53,6 +53,9 @@ /**
* @brief Enable access to registers and initialize RTC if BKP doamin
* was previously reseted.
+ *
+ * @note This function is implicitly invoked by @p halInit(), there is
+ * no need to explicitly initialize the driver.
*/
void rtcInit(void){
rtc_lld_init();
|