Skip to content

Commit 0b9cc09

Browse files
committed
[STM32F7] Update STM32Cube_FW version
1 parent 01648b2 commit 0b9cc09

File tree

127 files changed

+4118
-2090
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+4118
-2090
lines changed

libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F7/Release_Notes_stm32f7xx_hal.html

Lines changed: 52 additions & 1 deletion
Large diffs are not rendered by default.

libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F7/stm32_hal_legacy.h

Lines changed: 497 additions & 64 deletions
Large diffs are not rendered by default.

libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F7/stm32f7xx_hal.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32f7xx_hal.c
44
* @author MCD Application Team
5-
* @version V1.0.1
6-
* @date 25-June-2015
5+
* @version V1.0.4
6+
* @date 09-December-2015
77
* @brief HAL module driver.
88
* This is the common part of the HAL initialization
99
*
@@ -68,11 +68,11 @@
6868
* @{
6969
*/
7070
/**
71-
* @brief STM32F7xx HAL Driver version number V1.0.1
71+
* @brief STM32F7xx HAL Driver version number V1.0.4
7272
*/
7373
#define __STM32F7xx_HAL_VERSION_MAIN (0x01) /*!< [31:24] main version */
7474
#define __STM32F7xx_HAL_VERSION_SUB1 (0x00) /*!< [23:16] sub1 version */
75-
#define __STM32F7xx_HAL_VERSION_SUB2 (0x01) /*!< [15:8] sub2 version */
75+
#define __STM32F7xx_HAL_VERSION_SUB2 (0x04) /*!< [15:8] sub2 version */
7676
#define __STM32F7xx_HAL_VERSION_RC (0x00) /*!< [7:0] release candidate */
7777
#define __STM32F7xx_HAL_VERSION ((__STM32F7xx_HAL_VERSION_MAIN << 24)\
7878
|(__STM32F7xx_HAL_VERSION_SUB1 << 16)\
@@ -213,7 +213,7 @@ __weak void HAL_MspInit(void)
213213
}
214214

215215
/**
216-
* @brief DeInitializes the MSP.
216+
* @brief DeInitializes the MSP.
217217
* @retval None
218218
*/
219219
__weak void HAL_MspDeInit(void)
@@ -309,7 +309,7 @@ __weak uint32_t HAL_GetTick(void)
309309
* @note In the default implementation , SysTick timer is the source of time base.
310310
* It is used to generate interrupts at regular time intervals where uwTick
311311
* is incremented.
312-
* @note ThiS function is declared as __weak to be overwritten in case of other
312+
* @note This function is declared as __weak to be overwritten in case of other
313313
* implementations in user file.
314314
* @param Delay: specifies the delay time length, in milliseconds.
315315
* @retval None
@@ -327,7 +327,7 @@ __weak void HAL_Delay(__IO uint32_t Delay)
327327
* @brief Suspend Tick increment.
328328
* @note In the default implementation , SysTick timer is the source of time base. It is
329329
* used to generate interrupts at regular time intervals. Once HAL_SuspendTick()
330-
* is called, the the SysTick interrupt will be disabled and so Tick increment
330+
* is called, the SysTick interrupt will be disabled and so Tick increment
331331
* is suspended.
332332
* @note This function is declared as __weak to be overwritten in case of other
333333
* implementations in user file.
@@ -343,7 +343,7 @@ __weak void HAL_SuspendTick(void)
343343
* @brief Resume Tick increment.
344344
* @note In the default implementation , SysTick timer is the source of time base. It is
345345
* used to generate interrupts at regular time intervals. Once HAL_ResumeTick()
346-
* is called, the the SysTick interrupt will be enabled and so Tick increment
346+
* is called, the SysTick interrupt will be enabled and so Tick increment
347347
* is resumed.
348348
* @note This function is declared as __weak to be overwritten in case of other
349349
* implementations in user file.

libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F7/stm32f7xx_hal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32f7xx_hal.h
44
* @author MCD Application Team
5-
* @version V1.0.1
6-
* @date 25-June-2015
5+
* @version V1.0.4
6+
* @date 09-December-2015
77
* @brief This file contains all the functions prototypes for the HAL
88
* module driver.
99
******************************************************************************

0 commit comments

Comments
 (0)