Skip to content

[STM32L1XX] Update STM32CUBE_L1 to v1.6 #2220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32l152xc.s
;* Author : MCD Application Team
;* Version : V2.1.3
;* Date : 04-March-2016
;* Version : V2.2.0
;* Date : 01-July-2016
;* Description : STM32L152XC Devices vector for MDK-ARM toolchain.
;* This module performs:
;* - Set the initial SP
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32l152xc.s
;* Author : MCD Application Team
;* Version : V2.1.3
;* Date : 04-March-2016
;* Version : V2.2.0
;* Date : 01-July-2016
;* Description : STM32L152XC Devices vector for MDK-ARM toolchain.
;* This module performs:
;* - Set the initial SP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
******************************************************************************
* @file startup_stm32l152xc.s
* @author MCD Application Team
* @version V2.1.3
* @date 04-March-2016
* @version V2.2.0
* @date 01-July-2016
* @brief STM32L152XC Devices vector table for
* Atollic toolchain.
* This module performs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;/******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32l152xc.s
;* Author : MCD Application Team
;* Version : V2.1.3
;* Date : 04-March-2016
;* Version : V2.2.0
;* Date : 01-July-2016
;* Description : STM32L152XC Devices vector for EWARM toolchain.
;* This module performs:
;* - Set the initial SP
Expand Down
10,232 changes: 6,622 additions & 3,610 deletions hal/targets/cmsis/TARGET_STM/TARGET_STM32L1/TARGET_MOTE_L152RC/stm32l152xc.h

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
******************************************************************************
* @file stm32l1xx.h
* @author MCD Application Team
* @version V2.1.3
* @date 04-March-2016
* @version V2.2.0
* @date 01-July-2016
* @brief CMSIS STM32L1xx Device Peripheral Access Layer Header File.
*
* The file is the unique include file that the application programmer
Expand Down Expand Up @@ -118,11 +118,11 @@
#endif /* USE_HAL_DRIVER */

/**
* @brief CMSIS Device version number V2.1.3
* @brief CMSIS Device version number
*/
#define __STM32L1xx_CMSIS_VERSION_MAIN (0x02) /*!< [31:24] main version */
#define __STM32L1xx_CMSIS_VERSION_SUB1 (0x01) /*!< [23:16] sub1 version */
#define __STM32L1xx_CMSIS_VERSION_SUB2 (0x03) /*!< [15:8] sub2 version */
#define __STM32L1xx_CMSIS_VERSION_SUB1 (0x02) /*!< [23:16] sub1 version */
#define __STM32L1xx_CMSIS_VERSION_SUB2 (0x00) /*!< [15:8] sub2 version */
#define __STM32L1xx_CMSIS_VERSION_RC (0x00) /*!< [7:0] release candidate */
#define __STM32L1xx_CMSIS_VERSION ((__STM32L1xx_CMSIS_VERSION_MAIN << 24)\
|(__STM32L1xx_CMSIS_VERSION_SUB1 << 16)\
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
******************************************************************************
* @file stm32l1xx_hal_conf_template.h
* @file stm32l1xx_hal_conf.h
* @author MCD Application Team
* @version V1.1.3
* @date 04-March-2016
* @version V1.2.0
* @date 01-July-2016
* @brief HAL configuration template file.
* This file should be copied to the application folder and renamed
* to stm32l1xx_hal_conf.h.
Expand Down Expand Up @@ -274,11 +274,11 @@
* If expr is true, it returns no value.
* @retval None
*/
#define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
#define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__))
/* Exported functions ------------------------------------------------------- */
void assert_failed(uint8_t* file, uint32_t line);
#else
#define assert_param(expr) ((void)0)
#define assert_param(expr) ((void)0U)
#endif /* USE_FULL_ASSERT */

#ifdef __cplusplus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
******************************************************************************
* @file system_stm32l1xx.c
* @author MCD Application Team
* @version V2.1.3
* @date 04-March-2016
* @version V2.2.0
* @date 01-July-2016
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Source File.
*
* This file provides two functions and one global variable to be called from
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
******************************************************************************
* @file system_stm32l1xx.h
* @author MCD Application Team
* @version V2.1.3
* @date 04-March-2016
* @version V2.2.0
* @date 01-July-2016
* @brief CMSIS Cortex-M3 Device System Source File for STM32L1xx devices.
******************************************************************************
* @attention
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32l152xe.s
;* Author : MCD Application Team
;* Version : V2.1.3
;* Date : 04-March-2016
;* Version : V2.2.0
;* Date : 01-July-2016
;* Description : STM32L152XE Devices vector for MDK-ARM toolchain.
;* This module performs:
;* - Set the initial SP
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32l152xe.s
;* Author : MCD Application Team
;* Version : V2.1.3
;* Date : 04-March-2016
;* Version : V2.2.0
;* Date : 01-July-2016
;* Description : STM32L152XE Devices vector for MDK-ARM toolchain.
;* This module performs:
;* - Set the initial SP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
******************************************************************************
* @file startup_stm32l152xe.s
* @author MCD Application Team
* @version V2.1.3
* @date 04-March-2016
* @version V2.2.0
* @date 01-July-2016
* @brief STM32L152XE Devices vector table for
* Atollic toolchain.
* This module performs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
;/******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32l152xe.s
;* Author : MCD Application Team
;* Version : V2.1.3
;* Date : 04-March-2016
;* Version : V2.2.0
;* Date : 01-July-2016
;* Description : STM32L152XE Devices vector for EWARM toolchain.
;* This module performs:
;* - Set the initial SP
Expand Down
Loading