Fixed bug #590.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7953 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
f65a19077e
commit
6087f6342b
|
@ -310,7 +310,7 @@ void rtc_lld_init(void) {
|
||||||
rtc_enter_init();
|
rtc_enter_init();
|
||||||
|
|
||||||
RTCD1.rtc->CR = 0;
|
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;
|
||||||
RTCD1.rtc->PRER = STM32_RTC_PRER_BITS;
|
RTCD1.rtc->PRER = STM32_RTC_PRER_BITS;
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
|
|
||||||
*** 3.0.0p4 ***
|
*** 3.0.0p4 ***
|
||||||
- HAL: New DAC driver implementation for STM32F4xx.
|
- HAL: New DAC driver implementation for STM32F4xx.
|
||||||
|
- HAL: Fixed STM32 RTC PRER Register not being set in init (bug #590).
|
||||||
- HAL: Fixed STM32F334 does not have an EXT18 interrupt (bug #588).
|
- HAL: Fixed STM32F334 does not have an EXT18 interrupt (bug #588).
|
||||||
- HAL: Fixed STM32L1xx USB is missing disconnect/connect macros (bug #587).
|
- HAL: Fixed STM32L1xx USB is missing disconnect/connect macros (bug #587).
|
||||||
- HAL: Fixed wrong vector number for STM32L1xx USB (bug #586).
|
- HAL: Fixed wrong vector number for STM32L1xx USB (bug #586).
|
||||||
|
|
Loading…
Reference in New Issue