Skip to content

Commit c1b0285

Browse files
committed
[H7] Update HAL/LL wrapper files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 910535a commit c1b0285

File tree

10 files changed

+39
-0
lines changed

10 files changed

+39
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll_crs.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
#ifdef STM32G4xx
1212
#include "stm32g4xx_ll_crs.h"
1313
#endif
14+
#ifdef STM32H7xx
15+
#include "stm32h7xx_ll_crs.h"
16+
#endif
1417
#ifdef STM32L0xx
1518
#include "stm32l0xx_ll_crs.h"
1619
#endif

cores/arduino/stm32/stm32_def_build.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,18 @@
216216
#define CMSIS_STARTUP_FILE "startup_stm32h755xx.s"
217217
#elif defined(STM32H757xx)
218218
#define CMSIS_STARTUP_FILE "startup_stm32h757xx.s"
219+
#elif defined(STM32H7A3xx)
220+
#define CMSIS_STARTUP_FILE "startup_stm32h7a3xx.s"
221+
#elif defined(STM32H7A3xxQ)
222+
#define CMSIS_STARTUP_FILE "startup_stm32h7a3xxq.s"
223+
#elif defined(STM32H7B0xx)
224+
#define CMSIS_STARTUP_FILE "startup_stm32h7b0xx.s"
225+
#elif defined(STM32H7B0xxQ)
226+
#define CMSIS_STARTUP_FILE "startup_stm32h7b0xxq.s"
227+
#elif defined(STM32H7B3xx)
228+
#define CMSIS_STARTUP_FILE "startup_stm32h7b3xx.s"
229+
#elif defined(STM32H7B3xxQ)
230+
#define CMSIS_STARTUP_FILE "startup_stm32h7b3xxq.s"
219231
#elif defined(STM32L010x4)
220232
#define CMSIS_STARTUP_FILE "startup_stm32l010x4.s"
221233
#elif defined(STM32L010x6)

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_dfsdm_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_dfsdm_ex.c"
3+
#endif
14
#ifdef STM32L4xx
25
#include "stm32l4xx_hal_dfsdm_ex.c"
36
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_dts.c"
3+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_gfxmmu.c"
3+
#endif
14
#ifdef STM32L4xx
25
#include "stm32l4xx_hal_gfxmmu.c"
36
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_ospi.c"
3+
#endif
14
#ifdef STM32L4xx
25
#include "stm32l4xx_hal_ospi.c"
36
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_otfdec.c"
3+
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_pssi.c"
3+
#endif
14
#ifdef STM32L4xx
25
#include "stm32l4xx_hal_pssi.c"
36
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32H7xx
2+
#include "stm32h7xx_hal_rng_ex.c"
3+
#endif
14
#ifdef STM32L4xx
25
#include "stm32l4xx_hal_rng_ex.c"
36
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_crs.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32G4xx
55
#include "stm32g4xx_ll_crs.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_ll_crs.c"
9+
#endif
710
#ifdef STM32L0xx
811
#include "stm32l0xx_ll_crs.c"
912
#endif

0 commit comments

Comments
 (0)