git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8102 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2015-07-15 12:47:29 +00:00
parent 5ebfb65f68
commit 577f267dda
3 changed files with 10 additions and 6 deletions

View File

@ -97,9 +97,9 @@
#define STM32_PLS_EXT (7 << 5) /**< PVD level 7. */ #define STM32_PLS_EXT (7 << 5) /**< PVD level 7. */
#define STM32_VOS_MASK (3 << 11) /**< VOS field mask. */ #define STM32_VOS_MASK (3 << 11) /**< VOS field mask. */
#define STM32_VOS_RANGE1 (1 << 11) /**< VOS level 1.8 volts. */ #define STM32_VOS_1P8 (1 << 11) /**< VOS level 1.8 volts. */
#define STM32_VOS_RANGE2 (2 << 11) /**< VOS level 1.5 volts. */ #define STM32_VOS_1P5 (2 << 11) /**< VOS level 1.5 volts. */
#define STM32_VOS_RANGE3 (3 << 11) /**< VOS level 1.2 volts. */ #define STM32_VOS_1P2 (3 << 11) /**< VOS level 1.2 volts. */
/** @} */ /** @} */
/** /**
@ -316,7 +316,7 @@
/** /**
* @brief Enables or disables the LSE clock source. * @brief Enables or disables the LSE clock source.
*/ */
#if !defined(STM32_HSE_ENABLED) || defined(__DOXYGEN__) #if !defined(STM32_LSE_ENABLED) || defined(__DOXYGEN__)
#define STM32_LSE_ENABLED FALSE #define STM32_LSE_ENABLED FALSE
#endif #endif

View File

@ -244,7 +244,7 @@
/** /**
* @brief Enables or disables the LSE clock source. * @brief Enables or disables the LSE clock source.
*/ */
#if !defined(STM32_HSE_ENABLED) || defined(__DOXYGEN__) #if !defined(STM32_LSE_ENABLED) || defined(__DOXYGEN__)
#define STM32_LSE_ENABLED FALSE #define STM32_LSE_ENABLED FALSE
#endif #endif

View File

@ -75,7 +75,11 @@
*** 3.1.0 *** *** 3.1.0 ***
- HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support - HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support
for STM32F030xC, STM32F070x6, STM32F070xB devices. for STM32F030xC, STM32F070x6, STM32F070xB devices.
- HAL: Fixed wrong check on STM32_LSE_ENABLED definition in STM32L1xx HAL port
(bug #617)(backported to 3.0.0 and 2.6.9).
- HAL: Fixed rtcConvertDateTimeToFAT() incorrect conversion (bug #615)
(backported to 3.0.0).
*** 3.0.0 *** *** 3.0.0 ***
- NEW: Added an initialization function to the lwIP bindings, now it is - NEW: Added an initialization function to the lwIP bindings, now it is