Skip to content

Commit 7999a46

Browse files
authored
Merge pull request stm32duino#935 from fpistm/MP1Update
[MP1] Cube update
2 parents bbb0cf1 + 7157171 commit 7999a46

File tree

84 files changed

+394907
-15954
lines changed

Some content is hidden

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

84 files changed

+394907
-15954
lines changed

Diff for: cores/arduino/stm32/LL/stm32yyxx_ll.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#include "stm32yyxx_ll_crs.h"
1717
#include "stm32yyxx_ll_dac.h"
1818
#include "stm32yyxx_ll_delayblock.h"
19-
#include "stm32yyxx_ll_dma.h"
2019
#include "stm32yyxx_ll_dma2d.h"
20+
#include "stm32yyxx_ll_dma.h"
2121
#include "stm32yyxx_ll_dmamux.h"
2222
#include "stm32yyxx_ll_exti.h"
2323
#include "stm32yyxx_ll_fmac.h"

Diff for: cores/arduino/stm32/LL/stm32yyxx_ll_cortex.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_cortex.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_cortex.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_cortex.h"
4649
#endif

Diff for: cores/arduino/stm32/LL/stm32yyxx_ll_fmc.h

+3
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@
2323
#ifdef STM32L4xx
2424
#include "stm32l4xx_ll_fmc.h"
2525
#endif
26+
#ifdef STM32MP1xx
27+
#include "stm32mp1xx_ll_fmc.h"
28+
#endif
2629
#pragma GCC diagnostic pop
2730
#endif /* _STM32YYXX_LL_FMC_H_ */

Diff for: cores/arduino/stm32/LL/stm32yyxx_ll_rtc.h

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
#ifdef STM32L4xx
4242
#include "stm32l4xx_ll_rtc.h"
4343
#endif
44+
#ifdef STM32MP1xx
45+
#include "stm32mp1xx_ll_rtc.h"
46+
#endif
4447
#ifdef STM32WBxx
4548
#include "stm32wbxx_ll_rtc.h"
4649
#endif

Diff for: libraries/SrcWrapper/src/HAL/stm32yyxx_hal_rtc.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_hal_rtc.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_hal_rtc.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_hal_rtc.c"
3942
#endif

Diff for: libraries/SrcWrapper/src/HAL/stm32yyxx_hal_rtc_ex.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_hal_rtc_ex.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_hal_rtc_ex.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_hal_rtc_ex.c"
3942
#endif

Diff for: libraries/SrcWrapper/src/HAL/stm32yyxx_hal_sram.c

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@
2525
#ifdef STM32L4xx
2626
#include "stm32l4xx_hal_sram.c"
2727
#endif
28+
#ifdef STM32MP1xx
29+
#include "stm32mp1xx_hal_sram.c"
30+
#endif

Diff for: libraries/SrcWrapper/src/LL/stm32yyxx_ll_fmc.c

+3
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
#ifdef STM32L4xx
1717
#include "stm32l4xx_ll_fmc.c"
1818
#endif
19+
#ifdef STM32MP1xx
20+
#include "stm32mp1xx_ll_fmc.c"
21+
#endif

Diff for: libraries/SrcWrapper/src/LL/stm32yyxx_ll_rtc.c

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#ifdef STM32L4xx
3535
#include "stm32l4xx_ll_rtc.c"
3636
#endif
37+
#ifdef STM32MP1xx
38+
#include "stm32mp1xx_ll_rtc.c"
39+
#endif
3740
#ifdef STM32WBxx
3841
#include "stm32wbxx_ll_rtc.c"
3942
#endif

Diff for: libraries/SrcWrapper/src/stm32/clock.c

-10
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,6 @@
4343
extern "C" {
4444
#endif
4545

46-
#if defined(STM32MP1xx)
47-
#include "stm32mp1xx_hal.h"
48-
/* STM32MP1xx does not have own stm32mp1xx_ll_cortex.h so define functions manually.
49-
*/
50-
__STATIC_INLINE uint32_t LL_SYSTICK_IsActiveCounterFlag(void)
51-
{
52-
return ((SysTick->CTRL & SysTick_CTRL_COUNTFLAG_Msk) == (SysTick_CTRL_COUNTFLAG_Msk));
53-
}
54-
#endif
55-
5646
/**
5747
* @brief Function called to read the current micro second
5848
* @param None

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151axx_ca7.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151axx_cm4.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151cxx_ca7.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151cxx_cm4.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151dxx_ca7.h

+29,042
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151dxx_cm4.h

+29,008
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151fxx_ca7.h

+29,253
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp151fxx_cm4.h

+29,219
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153axx_ca7.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153axx_cm4.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153cxx_ca7.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153cxx_cm4.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153dxx_ca7.h

+30,625
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153dxx_cm4.h

+30,591
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153fxx_ca7.h

+30,836
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp153fxx_cm4.h

+30,802
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157axx_ca7.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157axx_cm4.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157cxx_ca7.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157cxx_cm4.h

+892-1,256
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157dxx_ca7.h

+31,873
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157dxx_cm4.h

+31,839
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157fxx_ca7.h

+32,084
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp157fxx_cm4.h

+32,050
Large diffs are not rendered by default.

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/stm32mp1xx.h

+33-25
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,21 @@
88
* is using in the C source code, usually in main.c. This file contains:
99
* - Configuration section that allows to select:
1010
* - The STM32MP1xx device used in the target application
11-
* - To use or not the peripherals drivers in application code(i.e.
12-
* code will be based on direct access to peripherals registers
11+
* - To use or not the peripherals drivers in application code(i.e.
12+
* code will be based on direct access to peripherals registers
1313
* rather than drivers API), this option is controlled by
1414
* "#define USE_HAL_DRIVER"
1515
*
1616
******************************************************************************
1717
* @attention
1818
*
19-
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
19+
* <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
20+
* All rights reserved.</center></h2>
2021
*
21-
* Redistribution and use in source and binary forms, with or without modification,
22-
* are permitted provided that the following conditions are met:
23-
* 1. Redistributions of source code must retain the above copyright notice,
24-
* this list of conditions and the following disclaimer.
25-
* 2. Redistributions in binary form must reproduce the above copyright notice,
26-
* this list of conditions and the following disclaimer in the documentation
27-
* and/or other materials provided with the distribution.
28-
* 3. Neither the name of STMicroelectronics nor the names of its contributors
29-
* may be used to endorse or promote products derived from this software
30-
* without specific prior written permission.
31-
*
32-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
33-
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
35-
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
36-
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37-
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
38-
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
40-
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41-
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22+
* This software component is licensed by ST under BSD 3-Clause license,
23+
* the "License"; You may not use this file except in compliance with the
24+
* License. You may obtain a copy of the License at:
25+
* opensource.org/licenses/BSD-3-Clause
4226
*
4327
******************************************************************************
4428
*/
@@ -86,7 +70,7 @@
8670
* @brief CMSIS Device version number
8771
*/
8872
#define __STM32MP1xx_CMSIS_VERSION_MAIN (0x01U) /*!< [31:24] main version */
89-
#define __STM32MP1xx_CMSIS_VERSION_SUB1 (0x01U) /*!< [23:16] sub1 version */
73+
#define __STM32MP1xx_CMSIS_VERSION_SUB1 (0x02U) /*!< [23:16] sub1 version */
9074
#define __STM32MP1xx_CMSIS_VERSION_SUB2 (0x00U) /*!< [15:8] sub2 version */
9175
#define __STM32MP1xx_CMSIS_VERSION_RC (0x00U) /*!< [7:0] release candidate */
9276
#define __STM32MP1xx_CMSIS_VERSION ((__CMSIS_DEVICE_VERSION_MAIN << 24)\
@@ -108,14 +92,26 @@
10892
#include "stm32mp157axx_cm4.h"
10993
#elif defined(STM32MP157Cxx)
11094
#include "stm32mp157cxx_cm4.h"
95+
#elif defined(STM32MP157Dxx)
96+
#include "stm32mp157dxx_cm4.h"
97+
#elif defined(STM32MP157Fxx)
98+
#include "stm32mp157fxx_cm4.h"
11199
#elif defined(STM32MP153Axx)
112100
#include "stm32mp153axx_cm4.h"
113101
#elif defined(STM32MP153Cxx)
114102
#include "stm32mp153cxx_cm4.h"
103+
#elif defined(STM32MP153Dxx)
104+
#include "stm32mp153dxx_cm4.h"
105+
#elif defined(STM32MP153Fxx)
106+
#include "stm32mp153fxx_cm4.h"
115107
#elif defined(STM32MP151Axx)
116108
#include "stm32mp151axx_cm4.h"
117109
#elif defined(STM32MP151Cxx)
118110
#include "stm32mp151cxx_cm4.h"
111+
#elif defined(STM32MP151Dxx)
112+
#include "stm32mp151dxx_cm4.h"
113+
#elif defined(STM32MP151Fxx)
114+
#include "stm32mp151fxx_cm4.h"
119115
#else
120116
#error "Please select first the target STM32MP1xx device used in your application (in stm32mp1xx.h file)"
121117
#endif
@@ -128,14 +124,26 @@
128124
#include "stm32mp157axx_ca7.h"
129125
#elif defined(STM32MP157Cxx)
130126
#include "stm32mp157cxx_ca7.h"
127+
#elif defined(STM32MP157Dxx)
128+
#include "stm32mp157dxx_ca7.h"
129+
#elif defined(STM32MP157Fxx)
130+
#include "stm32mp157fxx_ca7.h"
131131
#elif defined(STM32MP153Axx)
132132
#include "stm32mp153axx_ca7.h"
133133
#elif defined(STM32MP153Cxx)
134134
#include "stm32mp153cxx_ca7.h"
135+
#elif defined(STM32MP153Dxx)
136+
#include "stm32mp153dxx_ca7.h"
137+
#elif defined(STM32MP153Fxx)
138+
#include "stm32mp153fxx_ca7.h"
135139
#elif defined(STM32MP151Axx)
136140
#include "stm32mp151axx_ca7.h"
137141
#elif defined(STM32MP151Cxx)
138142
#include "stm32mp151cxx_ca7.h"
143+
#elif defined(STM32MP151Dxx)
144+
#include "stm32mp151dxx_ca7.h"
145+
#elif defined(STM32MP151Fxx)
146+
#include "stm32mp151fxx_ca7.h"
139147
#else
140148
#error "Please select first the target STM32MP1xx device used in your application (in stm32mp1xx.h file)"
141149
#endif

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Include/system_stm32mp1xx.h

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

Diff for: system/Drivers/CMSIS/Device/ST/STM32MP1xx/Release_Notes.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,16 @@ <h2>License</h2>
163163
</div>
164164
<div id="release_container" class="topic1">
165165
<div class="topic2" id="identification">
166-
<h3 style="width: 230px;">V1.1.1 / 14-November-2019</h3>
166+
<h3 style="width: 230px;">V1.2.0 / 03-Feb-2020</h3>
167167
</div>
168168
<div style="margin-left: 20px; width: 974px;" class="topic3" id="changes">
169-
<h4>Main changes</h4><ul><li><span style="font-family: Verdana,sans-serif; font-size: 10pt;"><span style="font-weight: bold;">Patch release to fix known defects&nbsp;</span></span></li><ul><li><span style="font-family: Verdana,sans-serif; font-size: 10pt;"><span style="font-weight: bold;"></span></span>Align Header file with TIM driver ( Break Source definition)</li><li>Update Linker Template file to define OpenAMP region ( for EWARM and MDK_ARM)</li></ul></ul>
169+
<h4>Main changes</h4>
170+
<ul><li>Header files:&nbsp;</li><ul><li>Add new Part Number for 800MHz</li><li>Update license with BSD 3-Clause template</li><li>Rework CMSIS for RTC/TAMP, GPIO and TIM</li><li>Rename TIM Break source bit definition</li></ul></ul><ul><li>Update Linker Template&nbsp;file for KEIL and IAR:</li><ul><li>Add OpenAMP region ( region present by default, to comment if needed )</li></ul></ul><br>
170171
</div>
171172
<div class="topic3" id="contents">
172173
<h4>Contents</h4>
173174
<ul>
174-
<li>CMSIS devices files for STM32MP<span style="font-weight: bold;">151C</span>xx ,STM32MP<span style="font-weight: bold;">151A</span>xx, STM32MP<span style="font-weight: bold;">153C</span>xx, STM32MP<span style="font-weight: bold;">153A</span>xx, STM32MP<span style="font-weight: bold;">157C</span>xx ,STM32MP<span style="font-weight: bold;">157A</span>xx</li></ul><ul>
175+
<li>CMSIS devices files for:</li><ul><li>STM32MP<span style="font-weight: bold;">151C</span>xx ,STM32MP<span style="font-weight: bold;">151A</span>xx, STM32MP<span style="font-weight: bold;">151D</span>xx ,STM32MP<span style="font-weight: bold;">151F</span>xx</li><li>STM32MP<span style="font-weight: bold;">153C</span>xx ,STM32MP<span style="font-weight: bold;">153A</span>xx, STM32MP<span style="font-weight: bold;">153D</span>xx ,STM32MP<span style="font-weight: bold;">153F</span>xx</li><li>STM32MP<span style="font-weight: bold;">157C</span>xx ,STM32MP<span style="font-weight: bold;">157A</span>xx, STM32MP<span style="font-weight: bold;">157D</span>xx ,STM32MP<span style="font-weight: bold;">157F</span>xx</li></ul></ul><ul>
175176
</ul>
176177
</div>
177178
</div>
@@ -180,7 +181,7 @@ <h4>Contents</h4>
180181
</div>
181182
<div id="history" class="topic1" hidden="">
182183
<h2>Update History</h2>
183-
<br><h3 style="background: rgb(51, 102, 255) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-right: 500pt; margin-left: 26px; width: 174px;"><span style="font-size: 10pt; font-family: Arial; color: white;">V1.1.0 / 10-September-2019</span><br></h3><div style="margin-left: 40px; width: 954px;" class="topic3" id="changes">
184+
<br><h3 style="background: rgb(51, 102, 255) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-right: 500pt; margin-left: 26px; width: 174px;"><span style="font-size: 10pt; font-family: Arial; color: white;">V1.1.0 / 10-Sept-2019</span><br></h3><div style="margin-left: 40px; width: 954px;" class="topic3" id="changes">
184185
<h4>Main changes</h4>
185186
<ul><li>Header files:&nbsp;</li><ul><li>Update FMC bit definition</li><li>Update ETH&nbsp;bit definition</li><li>update EXTI_EXTICR&nbsp;bit definition</li><li>Update I2C&nbsp;bit definition</li><li>Update SPI&nbsp;bit definition (SPI_CR1_CRC33_17, SPI_RXCRC, SPI_IER, SPI_I2SCFGR)&nbsp;</li><li>TMPSENS IP renamed DTS</li><li>Update FDCAN TXBC&nbsp;bit definition</li><li>Update DAC_DHR8RD&nbsp;bit definition</li><li>Add CRYP in STM32MP151Cx and STM32MP153Cx</li><li>Update TIM / LPTIM&nbsp;bit definition + add missing macros</li></ul><li>Update system_stm32mp1xx.c</li><ul><li>Update SystemCoreClock</li></ul><li>Update startup file for KEIL and IAR</li></ul></div><div style="margin-left: 40px; width: 954px;" class="topic3" id="changes">
186187
<h4>Contents</h4>

Diff for: system/Drivers/CMSIS/Device/ST/STM32YYxx_CMSIS_version.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* STM32L0: 1.9.0
1313
* STM32L1: 2.3.0
1414
* STM32L4: 1.6.0
15-
* STM32MP1: 1.1.1
15+
* STM32MP1: 1.2.0
1616
* STM32WB: 1.3.0
1717

1818
Release notes of each STM32YYxx CMSIS available here:

0 commit comments

Comments
 (0)