diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-10-30 06:49:24 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-10-30 06:49:24 +0000 |
commit | 6322caf5e879bd9f1e22bdd7af313589715536a5 (patch) | |
tree | ae8ca189a252d6a79306914d1db8e3730a67eb7f | |
parent | 0ce83f374de7003dd997e6a6fb6ca956ba6b98d4 (diff) | |
download | ChibiOS-6322caf5e879bd9f1e22bdd7af313589715536a5.tar.gz ChibiOS-6322caf5e879bd9f1e22bdd7af313589715536a5.tar.bz2 ChibiOS-6322caf5e879bd9f1e22bdd7af313589715536a5.zip |
Fixed small documentation error in STM32 RTCv1 driver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9891 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/STM32/LLD/RTCv1/hal_rtc_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/RTCv1/hal_rtc_lld.c b/os/hal/ports/STM32/LLD/RTCv1/hal_rtc_lld.c index 18c3cdef0..27689839d 100644 --- a/os/hal/ports/STM32/LLD/RTCv1/hal_rtc_lld.c +++ b/os/hal/ports/STM32/LLD/RTCv1/hal_rtc_lld.c @@ -245,7 +245,7 @@ void rtc_lld_init(void) { * @note The function can be called from any context.
*
* @param[in] rtcp pointer to RTC driver structure
- * @param[in] timespec pointer to a @p RTCTime structure
+ * @param[in] timespec pointer to a @p RTCDateTime structure
*
* @notapi
*/
@@ -260,7 +260,7 @@ void rtc_lld_set_time(RTCDriver *rtcp, const RTCDateTime *timespec) { * @note The function can be called from any context.
*
* @param[in] rtcp pointer to RTC driver structure
- * @param[in] timespec pointer to a @p RTCTime structure
+ * @param[in] timespec pointer to a @p RTCDateTime structure
*
* @notapi
*/
|