diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-07 12:24:39 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-07 12:24:39 +0000 |
commit | 6087f6342b25e5b51c4a43ec7ba21c0d319c61f6 (patch) | |
tree | d421ef8ac1c9377b07f251d8a7d7b3aaebc5f604 /os/hal | |
parent | f65a19077eb7744ad331825a5def180dce524150 (diff) | |
download | ChibiOS-6087f6342b25e5b51c4a43ec7ba21c0d319c61f6.tar.gz ChibiOS-6087f6342b25e5b51c4a43ec7ba21c0d319c61f6.tar.bz2 ChibiOS-6087f6342b25e5b51c4a43ec7ba21c0d319c61f6.zip |
Fixed bug #590.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7953 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/STM32/LLD/RTCv2/rtc_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/LLD/RTCv2/rtc_lld.c b/os/hal/ports/STM32/LLD/RTCv2/rtc_lld.c index 8e0cde83c..940abef7e 100644 --- a/os/hal/ports/STM32/LLD/RTCv2/rtc_lld.c +++ b/os/hal/ports/STM32/LLD/RTCv2/rtc_lld.c @@ -310,7 +310,7 @@ void rtc_lld_init(void) { rtc_enter_init();
RTCD1.rtc->CR = 0;
- RTCD1.rtc->ISR = 0;
+ RTCD1.rtc->ISR = RTC_ISR_INIT; /* Clearing all but RTC_ISR_INIT. */
RTCD1.rtc->PRER = STM32_RTC_PRER_BITS;
RTCD1.rtc->PRER = STM32_RTC_PRER_BITS;
|