git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9990 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2016-12-26 10:19:56 +00:00
parent 49498eb9b6
commit ad1a07d42a
2 changed files with 3 additions and 2 deletions

View File

@ -610,6 +610,8 @@
#error "STM32_LSEDRV outside acceptable range ((0<<3)...(3<<3))"
#endif
#else /* !STM32_LSE_ENABLED */
#if STM32_CECSW == STM32_CECSW_LSE
#error "LSE not enabled, required by STM32_CECSW"
#endif
@ -618,8 +620,6 @@
#error "LSE not enabled, required by STM32_USART1SW"
#endif
#else /* !STM32_LSE_ENABLED */
#if STM32_RTCSEL == STM32_RTCSEL_LSE
#error "LSE not enabled, required by STM32_RTCSEL"
#endif

View File

@ -73,6 +73,7 @@
*****************************************************************************
*** 16.1.6 ***
- HAL: Fixed misplaced else in STM32F0 port (bug #805).
- HAL: Fixed flash waiting state misconfiguration in STM32L4 port (bug #804).
- HAL: Added CR field to DAC configuration in STM32 port (bug #803).
- HAL: Fixed wrong initialization for DACD4 in STM32 port (bug #802).