Skip to content

Commit a6d052a

Browse files
committed
Updated STM32F7xx HAL Drivers to v1.2.3
Included in STM32CubeF7 FW V1.8.0 Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 3bf6fae commit a6d052a

File tree

187 files changed

+976
-1305
lines changed

Some content is hidden

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

187 files changed

+976
-1305
lines changed

system/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32_hal_legacy.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief This file contains aliases definition for the STM32Cube HAL constants
86
* macros and functions maintained for legacy purpose.
97
******************************************************************************

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32_assert_template.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32_assert.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief STM32 assert template file.
86
* This file should be copied to the application folder and renamed
97
* to stm32_assert.h.

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief This file contains all the functions prototypes for the HAL
86
* module driver.
97
******************************************************************************
@@ -198,6 +196,9 @@ void HAL_ResumeTick(void);
198196
uint32_t HAL_GetHalVersion(void);
199197
uint32_t HAL_GetREVID(void);
200198
uint32_t HAL_GetDEVID(void);
199+
uint32_t HAL_GetUIDw0(void);
200+
uint32_t HAL_GetUIDw1(void);
201+
uint32_t HAL_GetUIDw2(void);
201202
void HAL_DBGMCU_EnableDBGSleepMode(void);
202203
void HAL_DBGMCU_DisableDBGSleepMode(void);
203204
void HAL_DBGMCU_EnableDBGStopMode(void);

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_adc.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief Header file of ADC HAL extension module.
86
******************************************************************************
97
* @attention
@@ -854,7 +852,7 @@ uint32_t HAL_ADC_GetError(ADC_HandleTypeDef *hadc);
854852
* @param _NBR_DISCONTINUOUSCONV_: Number of discontinuous conversions.
855853
* @retval None
856854
*/
857-
#define ADC_CR1_DISCONTINUOUS(_NBR_DISCONTINUOUSCONV_) (((_NBR_DISCONTINUOUSCONV_) - 1) << POSITION_VAL(ADC_CR1_DISCNUM))
855+
#define ADC_CR1_DISCONTINUOUS(_NBR_DISCONTINUOUSCONV_) (((_NBR_DISCONTINUOUSCONV_) - 1) << ADC_CR1_DISCNUM_Pos)
858856

859857
/**
860858
* @brief Enable ADC scan mode.

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_adc.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief Header file of ADC HAL module.
86
******************************************************************************
97
* @attention

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_can.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_can.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief Header file of CAN HAL module.
86
******************************************************************************
97
* @attention

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cec.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_cec.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief Header file of CEC HAL module.
86
******************************************************************************
97
* @attention

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_conf_template.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_conf_template.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief HAL configuration template file.
86
* This file should be copied to the application folder and renamed
97
* to stm32f7xx_hal_conf.h.
@@ -450,7 +448,7 @@
450448
/* Exported functions ------------------------------------------------------- */
451449
void assert_failed(uint8_t* file, uint32_t line);
452450
#else
453-
#define assert_param(expr) ((void)0)
451+
#define assert_param(expr) ((void)0U)
454452
#endif /* USE_FULL_ASSERT */
455453

456454

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_cortex.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief Header file of CORTEX HAL module.
86
******************************************************************************
97
* @attention

system/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
******************************************************************************
33
* @file stm32f7xx_hal_crc.h
44
* @author MCD Application Team
5-
* @version V1.2.2
6-
* @date 14-April-2017
75
* @brief Header file of CRC HAL module.
86
******************************************************************************
97
* @attention

0 commit comments

Comments
 (0)