aboutsummaryrefslogtreecommitdiff
path: root/stmhal/hal/f4/src/stm32f4xx_hal.c
diff options
context:
space:
mode:
authorKrzysztof Blazewicz2016-11-15 14:47:48 +0100
committerKrzysztof Blazewicz2016-11-16 12:43:27 +0100
commite8b435d1f80a220a4f561b1e653ea33b69517513 (patch)
tree54edcd7de96d2f56f2250d69366ccdc2f3004b87 /stmhal/hal/f4/src/stm32f4xx_hal.c
parentc1fa33b493db3f861c322c84da56aed0c1599339 (diff)
stmhal: apply STM32CubeF4 v1.13.1 patch - upgrade HAL driver to v1.5.2
Diffstat (limited to 'stmhal/hal/f4/src/stm32f4xx_hal.c')
-rw-r--r--stmhal/hal/f4/src/stm32f4xx_hal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/stmhal/hal/f4/src/stm32f4xx_hal.c b/stmhal/hal/f4/src/stm32f4xx_hal.c
index 65c02c1f6..d388dbf1c 100644
--- a/stmhal/hal/f4/src/stm32f4xx_hal.c
+++ b/stmhal/hal/f4/src/stm32f4xx_hal.c
@@ -2,8 +2,8 @@
******************************************************************************
* @file stm32f4xx_hal.c
* @author MCD Application Team
- * @version V1.5.1
- * @date 01-July-2016
+ * @version V1.5.2
+ * @date 22-September-2016
* @brief HAL module driver.
* This is the common part of the HAL initialization
*
@@ -68,17 +68,17 @@
* @{
*/
/**
- * @brief STM32F4xx HAL Driver version number V1.5.1
+ * @brief STM32F4xx HAL Driver version number V1.5.2
*/
#define __STM32F4xx_HAL_VERSION_MAIN (0x01) /*!< [31:24] main version */
#define __STM32F4xx_HAL_VERSION_SUB1 (0x05) /*!< [23:16] sub1 version */
-#define __STM32F4xx_HAL_VERSION_SUB2 (0x01) /*!< [15:8] sub2 version */
+#define __STM32F4xx_HAL_VERSION_SUB2 (0x02) /*!< [15:8] sub2 version */
#define __STM32F4xx_HAL_VERSION_RC (0x00) /*!< [7:0] release candidate */
#define __STM32F4xx_HAL_VERSION ((__STM32F4xx_HAL_VERSION_MAIN << 24U)\
|(__STM32F4xx_HAL_VERSION_SUB1 << 16U)\
|(__STM32F4xx_HAL_VERSION_SUB2 << 8U )\
|(__STM32F4xx_HAL_VERSION_RC))
-
+
#define IDCODE_DEVID_MASK ((uint32_t)0x00000FFFU)
/* ------------ RCC registers bit address in the alias region ----------- */