Skip to content

Commit 76a7b58

Browse files
committed
STM32L4: update drivers version to CUBE V1.14.0
1 parent 2f136b9 commit 76a7b58

File tree

276 files changed

+126545
-103443
lines changed

Some content is hidden

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

276 files changed

+126545
-103443
lines changed

targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/stm32l471xx.h

Lines changed: 5602 additions & 7151 deletions
Large diffs are not rendered by default.

targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/stm32l4xx.h

Lines changed: 0 additions & 240 deletions
This file was deleted.

targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/device/system_stm32l4xx.h

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,13 @@
88
******************************************************************************
99
* @attention
1010
*
11-
* <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
11+
* <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
12+
* All rights reserved.</center></h2>
1213
*
13-
* Redistribution and use in source and binary forms, with or without modification,
14-
* are permitted provided that the following conditions are met:
15-
* 1. Redistributions of source code must retain the above copyright notice,
16-
* this list of conditions and the following disclaimer.
17-
* 2. Redistributions in binary form must reproduce the above copyright notice,
18-
* this list of conditions and the following disclaimer in the documentation
19-
* and/or other materials provided with the distribution.
20-
* 3. Neither the name of STMicroelectronics nor the names of its contributors
21-
* may be used to endorse or promote products derived from this software
22-
* without specific prior written permission.
23-
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25-
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27-
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28-
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29-
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30-
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32-
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33-
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14+
* This software component is licensed by ST under BSD 3-Clause license,
15+
* the "License"; You may not use this file except in compliance with the
16+
* License. You may obtain a copy of the License at:
17+
* opensource.org/licenses/BSD-3-Clause
3418
*
3519
******************************************************************************
3620
*/

targets/TARGET_STM/TARGET_STM32L4/TARGET_MTS_DRAGONFLY_L471QG/system_clock.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,7 @@ uint8_t SetSysClock_PLL_MSI(void)
337337
}
338338
/* Enable MSI Auto-calibration through LSE */
339339
HAL_RCCEx_EnableMSIPLLMode();
340-
/* Select MSI output as USB clock source */
341-
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_USB;
342-
PeriphClkInitStruct.UsbClockSelection = RCC_USBCLKSOURCE_MSI; /* 48 MHz */
343-
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
340+
344341
// Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers
345342
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
346343
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; /* 80 MHz */

targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L432xC/device/TOOLCHAIN_ARM_MICRO/startup_stm32l432xx.S

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
;********************** COPYRIGHT(c) 2016 STMicroelectronics ******************
1+
;*******************************************************************************
22
;* File Name : startup_stm32l432xx.s
33
;* Author : MCD Application Team
4-
;* Version : V1.1.1
5-
;* Date : 29-April-2016
64
;* Description : STM32L432xx Ultra Low Power devices vector table for MDK-ARM toolchain.
75
;* This module performs:
86
;* - Set the initial SP
@@ -15,27 +13,13 @@
1513
;* <<< Use Configuration Wizard in Context Menu >>>
1614
;*******************************************************************************
1715
;*
18-
;* Redistribution and use in source and binary forms, with or without modification,
19-
;* are permitted provided that the following conditions are met:
20-
;* 1. Redistributions of source code must retain the above copyright notice,
21-
;* this list of conditions and the following disclaimer.
22-
;* 2. Redistributions in binary form must reproduce the above copyright notice,
23-
;* this list of conditions and the following disclaimer in the documentation
24-
;* and/or other materials provided with the distribution.
25-
;* 3. Neither the name of STMicroelectronics nor the names of its contributors
26-
;* may be used to endorse or promote products derived from this software
27-
;* without specific prior written permission.
16+
;* <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
17+
;* All rights reserved.</center></h2>
2818
;*
29-
;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30-
;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31-
;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32-
;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
33-
;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34-
;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35-
;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36-
;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37-
;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38-
;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19+
;* This software component is licensed by ST under BSD 3-Clause license,
20+
;* the "License"; You may not use this file except in compliance with the
21+
;* License. You may obtain a copy of the License at:
22+
;* opensource.org/licenses/BSD-3-Clause
3923
;*
4024
;*******************************************************************************
4125

targets/TARGET_STM/TARGET_STM32L4/TARGET_STM32L432xC/device/TOOLCHAIN_ARM_STD/startup_stm32l432xx.S

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
;********************** COPYRIGHT(c) 2016 STMicroelectronics ******************
1+
;*******************************************************************************
22
;* File Name : startup_stm32l432xx.s
33
;* Author : MCD Application Team
4-
;* Version : V1.1.1
5-
;* Date : 29-April-2016
64
;* Description : STM32L432xx Ultra Low Power devices vector table for MDK-ARM toolchain.
75
;* This module performs:
86
;* - Set the initial SP
@@ -15,27 +13,13 @@
1513
;* <<< Use Configuration Wizard in Context Menu >>>
1614
;*******************************************************************************
1715
;*
18-
;* Redistribution and use in source and binary forms, with or without modification,
19-
;* are permitted provided that the following conditions are met:
20-
;* 1. Redistributions of source code must retain the above copyright notice,
21-
;* this list of conditions and the following disclaimer.
22-
;* 2. Redistributions in binary form must reproduce the above copyright notice,
23-
;* this list of conditions and the following disclaimer in the documentation
24-
;* and/or other materials provided with the distribution.
25-
;* 3. Neither the name of STMicroelectronics nor the names of its contributors
26-
;* may be used to endorse or promote products derived from this software
27-
;* without specific prior written permission.
16+
;* <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
17+
;* All rights reserved.</center></h2>
2818
;*
29-
;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30-
;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31-
;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32-
;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
33-
;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34-
;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35-
;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36-
;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37-
;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38-
;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19+
;* This software component is licensed by ST under BSD 3-Clause license,
20+
;* the "License"; You may not use this file except in compliance with the
21+
;* License. You may obtain a copy of the License at:
22+
;* opensource.org/licenses/BSD-3-Clause
3923
;*
4024
;*******************************************************************************
4125

0 commit comments

Comments
 (0)