diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-03 18:25:04 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-03 18:25:04 +0000 |
commit | d15f612b861af72fffb8ee2e4f3b95e991bfcf10 (patch) | |
tree | 65eb450b91a80a2f9d05b577edca3e989d5484aa /os | |
parent | 792d85bcb5774e63100abef0125d5325312f916a (diff) | |
download | ChibiOS-d15f612b861af72fffb8ee2e4f3b95e991bfcf10.tar.gz ChibiOS-d15f612b861af72fffb8ee2e4f3b95e991bfcf10.tar.bz2 ChibiOS-d15f612b861af72fffb8ee2e4f3b95e991bfcf10.zip |
RTC. Tiny improvement in documentation.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3288 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-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();
|