Skip to content

Commit 5037189

Browse files
committed
Update HAL for STM32L4xx (from STM32CubeL4 V1.8.0)
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 66e0d76 commit 5037189

File tree

185 files changed

+529
-456
lines changed

Some content is hidden

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

185 files changed

+529
-456
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32_hal_legacy.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief This file contains aliases definition for the STM32Cube HAL constants
88
* macros and functions maintained for legacy purpose.
99
******************************************************************************

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32_assert_template.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32_assert.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief STM32 assert template file.
88
* This file should be copied to the application folder and renamed
99
* to stm32_assert.h.
@@ -58,9 +58,9 @@
5858
* If expr is true, it returns no value.
5959
* @retval None
6060
*/
61-
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__))
61+
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((char *)__FILE__, __LINE__))
6262
/* Exported functions ------------------------------------------------------- */
63-
void assert_failed(uint8_t* file, uint32_t line);
63+
void assert_failed(char *file, uint32_t line);
6464
#else
6565
#define assert_param(expr) ((void)0U)
6666
#endif /* USE_FULL_ASSERT */

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief This file contains all the functions prototypes for the HAL
88
* module driver.
99
******************************************************************************
@@ -582,6 +582,9 @@ void HAL_ResumeTick(void);
582582
uint32_t HAL_GetHalVersion(void);
583583
uint32_t HAL_GetREVID(void);
584584
uint32_t HAL_GetDEVID(void);
585+
uint32_t HAL_GetUIDw0(void);
586+
uint32_t HAL_GetUIDw1(void);
587+
uint32_t HAL_GetUIDw2(void);
585588

586589
/**
587590
* @}

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_adc.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief Header file of ADC HAL module.
88
******************************************************************************
99
* @attention

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_adc_ex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_adc_ex.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief Header file of ADC HAL extended module.
88
******************************************************************************
99
* @attention

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_can.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_can.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief Header file of CAN HAL module.
88
******************************************************************************
99
* @attention

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_comp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_comp.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief Header file of COMP HAL module.
88
******************************************************************************
99
* @attention

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_conf_template.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_conf.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief HAL configuration template file.
88
* This file should be copied to the application folder and renamed
99
* to stm32l4xx_hal_conf.h.
@@ -391,9 +391,9 @@
391391
* If expr is true, it returns no value.
392392
* @retval None
393393
*/
394-
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__))
394+
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((char *)__FILE__, __LINE__))
395395
/* Exported functions ------------------------------------------------------- */
396-
void assert_failed(uint8_t* file, uint32_t line);
396+
void assert_failed(char *file, uint32_t line);
397397
#else
398398
#define assert_param(expr) ((void)0U)
399399
#endif /* USE_FULL_ASSERT */

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_cortex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_cortex.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief Header file of CORTEX HAL module.
88
******************************************************************************
99
* @attention

system/Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_hal_crc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
******************************************************************************
33
* @file stm32l4xx_hal_crc.h
44
* @author MCD Application Team
5-
* @version V1.7.0
6-
* @date 17-February-2017
5+
* @version V1.7.1
6+
* @date 21-April-2017
77
* @brief Header file of CRC HAL module.
88
******************************************************************************
99
* @attention

0 commit comments

Comments
 (0)