Skip to content

Commit f0d9090

Browse files
authored
Merge pull request #15443 from hallard/STM32Cube_FW_WL_V1.3.0
STM32WL update drivers version to CUBE V1.3.0
2 parents dba734f + 306c93d commit f0d9090

File tree

157 files changed

+19335
-5501
lines changed

Some content is hidden

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

157 files changed

+19335
-5501
lines changed

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wl54xx.h

+216-115
Large diffs are not rendered by default.

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wl55xx.h

+216-115
Large diffs are not rendered by default.

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wl5mxx.h

+11,558
Large diffs are not rendered by default.

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wle4xx.h

+210-113
Large diffs are not rendered by default.

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wle5xx.h

+210-113
Large diffs are not rendered by default.

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wlxx.h

+8-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
******************************************************************************
1717
* @attention
1818
*
19-
* Copyright (c) 2020(-2021) STMicroelectronics.
19+
* Copyright (c) 2020-2021 STMicroelectronics.
2020
* All rights reserved.
2121
*
2222
* This software is licensed under terms that can be found in the LICENSE file
@@ -56,12 +56,13 @@
5656
application
5757
*/
5858

59-
#if !defined (STM32WL55xx) && !defined (STM32WL54xx) && !defined (STM32WLE5xx) && !defined (STM32WLE4xx)
59+
#if !defined (STM32WL55xx) && !defined (STM32WL54xx) && !defined (STM32WLE5xx) && !defined (STM32WLE4xx) && !defined(STM32WL5Mxx)
6060
/* #define STM32WL55xx */ /*!< STM32WL55xx Devices */
6161
/* #define STM32WL54xx */ /*!< STM32WL54xx Devices */
6262
/* #define STM32WLE5xx */ /*!< STM32WLE5xx Devices */
6363
/* #define STM32WLE4xx */ /*!< STM32WLE4xx Devices */
64-
#endif
64+
/* #define STM32WL5Mxx */ /*!< STM32WL5Mxx Devices */
65+
#endif /* STM32WL55xx ... */
6566

6667
/* Tip: To avoid modifying this file each time you need to switch between these
6768
devices, you can define the device in your toolchain compiler preprocessor.
@@ -79,7 +80,7 @@
7980
* @brief CMSIS Device version number
8081
*/
8182
#define __STM32WLxx_CMSIS_VERSION_MAIN (0x01U) /*!< [31:24] main version */
82-
#define __STM32WLxx_CMSIS_VERSION_SUB1 (0x01U) /*!< [23:16] sub1 version */
83+
#define __STM32WLxx_CMSIS_VERSION_SUB1 (0x02U) /*!< [23:16] sub1 version */
8384
#define __STM32WLxx_CMSIS_VERSION_SUB2 (0x00U) /*!< [15:8] sub2 version */
8485
#define __STM32WLxx_CMSIS_VERSION_RC (0x00U) /*!< [7:0] release candidate */
8586
#define __STM32WLxx_CMSIS_DEVICE_VERSION ((__STM32WLxx_CMSIS_VERSION_MAIN << 24)\
@@ -103,9 +104,11 @@
103104
#include "stm32wl54xx.h"
104105
#elif defined(STM32WLE4xx)
105106
#include "stm32wle4xx.h"
107+
#elif defined(STM32WL5Mxx)
108+
#include "stm32wl5mxx.h"
106109
#else
107110
#error "Please select first the target STM32WLxx device used in your application, for instance xxx (in stm32wlxx.h file)"
108-
#endif
111+
#endif /* STM32WL55xx ... */
109112

110113
/**
111114
* @}
@@ -275,8 +278,3 @@ typedef enum
275278
/**
276279
* @}
277280
*/
278-
279-
280-
281-
282-
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/system_stm32wlxx.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
******************************************************************************
77
* @attention
88
*
9-
* Copyright (c) 2020(-2021) STMicroelectronics.
9+
* Copyright (c) 2020-2021 STMicroelectronics.
1010
* All rights reserved.
1111
*
1212
* This software is licensed under terms that can be found in the LICENSE file
@@ -103,4 +103,3 @@ extern void SystemCoreClockUpdate(void);
103103
/**
104104
* @}
105105
*/
106-
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

0 commit comments

Comments
 (0)