Skip to content

Commit

Permalink
Merge pull request #15443 from hallard/STM32Cube_FW_WL_V1.3.0
Browse files Browse the repository at this point in the history
STM32WL update drivers version to CUBE V1.3.0
  • Loading branch information
0xc0170 committed Aug 21, 2023
2 parents dba734f + 306c93d commit f0d9090
Show file tree
Hide file tree
Showing 157 changed files with 19,335 additions and 5,501 deletions.
331 changes: 216 additions & 115 deletions targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wl54xx.h

Large diffs are not rendered by default.

331 changes: 216 additions & 115 deletions targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wl55xx.h

Large diffs are not rendered by default.

11,558 changes: 11,558 additions & 0 deletions targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wl5mxx.h

Large diffs are not rendered by default.

323 changes: 210 additions & 113 deletions targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wle4xx.h

Large diffs are not rendered by default.

323 changes: 210 additions & 113 deletions targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wle5xx.h

Large diffs are not rendered by default.

18 changes: 8 additions & 10 deletions targets/TARGET_STM/TARGET_STM32WL/STM32Cube_FW/CMSIS/stm32wlxx.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
******************************************************************************
* @attention
*
* Copyright (c) 2020(-2021) STMicroelectronics.
* Copyright (c) 2020-2021 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
Expand Down Expand Up @@ -56,12 +56,13 @@
application
*/

#if !defined (STM32WL55xx) && !defined (STM32WL54xx) && !defined (STM32WLE5xx) && !defined (STM32WLE4xx)
#if !defined (STM32WL55xx) && !defined (STM32WL54xx) && !defined (STM32WLE5xx) && !defined (STM32WLE4xx) && !defined(STM32WL5Mxx)
/* #define STM32WL55xx */ /*!< STM32WL55xx Devices */
/* #define STM32WL54xx */ /*!< STM32WL54xx Devices */
/* #define STM32WLE5xx */ /*!< STM32WLE5xx Devices */
/* #define STM32WLE4xx */ /*!< STM32WLE4xx Devices */
#endif
/* #define STM32WL5Mxx */ /*!< STM32WL5Mxx Devices */
#endif /* STM32WL55xx ... */

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

/**
* @}
Expand Down Expand Up @@ -275,8 +278,3 @@ typedef enum
/**
* @}
*/




/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
******************************************************************************
* @attention
*
* Copyright (c) 2020(-2021) STMicroelectronics.
* Copyright (c) 2020-2021 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
Expand Down Expand Up @@ -103,4 +103,3 @@ extern void SystemCoreClockUpdate(void);
/**
* @}
*/
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Loading

0 comments on commit f0d9090

Please sign in to comment.