2
2
******************************************************************************
3
3
* @file stm32f7xx_hal.c
4
4
* @author MCD Application Team
5
- * @version V1.0.1
6
- * @date 25-June -2015
5
+ * @version V1.0.4
6
+ * @date 09-December -2015
7
7
* @brief HAL module driver.
8
8
* This is the common part of the HAL initialization
9
9
*
68
68
* @{
69
69
*/
70
70
/**
71
- * @brief STM32F7xx HAL Driver version number V1.0.1
71
+ * @brief STM32F7xx HAL Driver version number V1.0.4
72
72
*/
73
73
#define __STM32F7xx_HAL_VERSION_MAIN (0x01) /*!< [31:24] main version */
74
74
#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 */
76
76
#define __STM32F7xx_HAL_VERSION_RC (0x00) /*!< [7:0] release candidate */
77
77
#define __STM32F7xx_HAL_VERSION ((__STM32F7xx_HAL_VERSION_MAIN << 24)\
78
78
|(__STM32F7xx_HAL_VERSION_SUB1 << 16)\
@@ -213,7 +213,7 @@ __weak void HAL_MspInit(void)
213
213
}
214
214
215
215
/**
216
- * @brief DeInitializes the MSP.
216
+ * @brief DeInitializes the MSP.
217
217
* @retval None
218
218
*/
219
219
__weak void HAL_MspDeInit (void )
@@ -309,7 +309,7 @@ __weak uint32_t HAL_GetTick(void)
309
309
* @note In the default implementation , SysTick timer is the source of time base.
310
310
* It is used to generate interrupts at regular time intervals where uwTick
311
311
* 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
313
313
* implementations in user file.
314
314
* @param Delay: specifies the delay time length, in milliseconds.
315
315
* @retval None
@@ -327,7 +327,7 @@ __weak void HAL_Delay(__IO uint32_t Delay)
327
327
* @brief Suspend Tick increment.
328
328
* @note In the default implementation , SysTick timer is the source of time base. It is
329
329
* 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
331
331
* is suspended.
332
332
* @note This function is declared as __weak to be overwritten in case of other
333
333
* implementations in user file.
@@ -343,7 +343,7 @@ __weak void HAL_SuspendTick(void)
343
343
* @brief Resume Tick increment.
344
344
* @note In the default implementation , SysTick timer is the source of time base. It is
345
345
* 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
347
347
* is resumed.
348
348
* @note This function is declared as __weak to be overwritten in case of other
349
349
* implementations in user file.
0 commit comments