Skip to content

Commit 625914c

Browse files
committed
[F7] Update STM32F7xx CMSIS to v1.2.4
Included in STM32CubeF7 FW V1.15.0 Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 8ec285b commit 625914c

17 files changed

+81401
-80923
lines changed

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f722xx.h

+5,164-5,135
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f723xx.h

+5,187-5,158
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f730xx.h

+5,238-5,209
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f732xx.h

+5,215-5,186
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f733xx.h

+5,238-5,209
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f745xx.h

+5,666-5,637
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h

+5,739-5,710
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f750xx.h

+5,816-5,781
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f756xx.h

+5,821-5,786
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f765xx.h

+5,870-5,836
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f767xx.h

+6,066-6,032
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f769xx.h

+7,052-7,018
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f777xx.h

+6,148-6,108
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f779xx.h

+7,134-7,094
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -113,16 +113,16 @@
113113
#endif /* USE_HAL_DRIVER */
114114

115115
/**
116-
* @brief CMSIS Device version number V1.2.3
116+
* @brief CMSIS Device version number V1.2.4
117117
*/
118118
#define __STM32F7_CMSIS_VERSION_MAIN (0x01) /*!< [31:24] main version */
119119
#define __STM32F7_CMSIS_VERSION_SUB1 (0x02) /*!< [23:16] sub1 version */
120-
#define __STM32F7_CMSIS_VERSION_SUB2 (0x03) /*!< [15:8] sub2 version */
120+
#define __STM32F7_CMSIS_VERSION_SUB2 (0x04) /*!< [15:8] sub2 version */
121121
#define __STM32F7_CMSIS_VERSION_RC (0x00) /*!< [7:0] release candidate */
122122
#define __STM32F7_CMSIS_VERSION ((__STM32F7_CMSIS_VERSION_MAIN << 24)\
123123
|(__STM32F7_CMSIS_VERSION_SUB1 << 16)\
124124
|(__STM32F7_CMSIS_VERSION_SUB2 << 8 )\
125-
|(__STM32F7_CMSIS_VERSION))
125+
|(__STM32F7_CMSIS_VERSION_RC))
126126
/**
127127
* @}
128128
*/
@@ -184,8 +184,8 @@ typedef enum
184184

185185
typedef enum
186186
{
187-
ERROR = 0U,
188-
SUCCESS = !ERROR
187+
SUCCESS = 0U,
188+
ERROR = !SUCCESS
189189
} ErrorStatus;
190190

191191
/**

system/Drivers/CMSIS/Device/ST/STM32F7xx/Release_Notes.html

+41-18
Large diffs are not rendered by default.

system/Drivers/CMSIS/Device/ST/STM32YYxx_CMSIS_version.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* STM32F2: 2.2.1
66
* STM32F3: 2.3.3
77
* STM32F4: 2.6.3
8-
* STM32F7: 1.2.3
8+
* STM32F7: 1.2.4
99
* STM32H7: 1.4.0
1010
* STM32L0: 1.9.0
1111
* STM32L1: 2.2.3

0 commit comments

Comments
 (0)