Skip to content

Commit 869cf0d

Browse files
committed
[H7] Update HAL/LL wrapper files
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 858e199 commit 869cf0d

7 files changed

+28
-0
lines changed

cores/arduino/stm32/HAL/stm32yyxx_hal_dsi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_dsi.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_dsi.c"
9+
#endif
710
#ifdef STM32L4xx
811
#include "stm32l4xx_hal_dsi.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_ltdc_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F7xx
55
#include "stm32f7xx_hal_ltdc_ex.c"
66
#endif
7+
#ifdef STM32H7xx
8+
#include "stm32h7xx_hal_ltdc_ex.c"
9+
#endif
710
#ifdef STM32L4xx
811
#include "stm32l4xx_hal_ltdc_ex.c"
912
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_msp_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
#ifdef STM32G0xx
2121
#include "stm32g0xx_hal_msp_template.c"
2222
#endif
23+
#ifdef STM32H7xx
24+
#include "stm32h7xx_hal_msp_template.c"
25+
#endif
2326
#ifdef STM32L0xx
2427
#include "stm32l0xx_hal_msp_template.c"
2528
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_timebase_rtc_alarm_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
#ifdef STM32G0xx
2121
#include "stm32g0xx_hal_timebase_rtc_alarm_template.c"
2222
#endif
23+
#ifdef STM32H7xx
24+
#include "stm32h7xx_hal_timebase_rtc_alarm_template.c"
25+
#endif
2326
#ifdef STM32WBxx
2427
#include "stm32wbxx_hal_timebase_rtc_alarm_template.c"
2528
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_timebase_rtc_wakeup_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
#ifdef STM32G0xx
1818
#include "stm32g0xx_hal_timebase_rtc_wakeup_template.c"
1919
#endif
20+
#ifdef STM32H7xx
21+
#include "stm32h7xx_hal_timebase_rtc_wakeup_template.c"
22+
#endif
2023
#ifdef STM32WBxx
2124
#include "stm32wbxx_hal_timebase_rtc_wakeup_template.c"
2225
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_timebase_tim_template.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
#ifdef STM32G0xx
2121
#include "stm32g0xx_hal_timebase_tim_template.c"
2222
#endif
23+
#ifdef STM32H7xx
24+
#include "stm32h7xx_hal_timebase_tim_template.c"
25+
#endif
2326
#ifdef STM32L1xx
2427
#include "stm32l1xx_hal_timebase_tim_template.c"
2528
#endif

cores/arduino/stm32/stm32_def_build.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,22 @@
184184
#define CMSIS_STARTUP_FILE "startup_stm32g071xx.s"
185185
#elif defined(STM32G081xx)
186186
#define CMSIS_STARTUP_FILE "startup_stm32g081xx.s"
187+
#elif defined(STM32H742xx)
188+
#define CMSIS_STARTUP_FILE "startup_stm32h742xx.s"
187189
#elif defined(STM32H743xx)
188190
#define CMSIS_STARTUP_FILE "startup_stm32h743xx.s"
191+
#elif defined(STM32H745xx)
192+
#define CMSIS_STARTUP_FILE "startup_stm32h745xx.s"
193+
#elif defined(STM32H747xx)
194+
#define CMSIS_STARTUP_FILE "startup_stm32h747xx.s"
189195
#elif defined(STM32H750xx)
190196
#define CMSIS_STARTUP_FILE "startup_stm32h750xx.s"
191197
#elif defined(STM32H753xx)
192198
#define CMSIS_STARTUP_FILE "startup_stm32h753xx.s"
199+
#elif defined(STM32H755xx)
200+
#define CMSIS_STARTUP_FILE "startup_stm32h755xx.s"
201+
#elif defined(STM32H757xx)
202+
#define CMSIS_STARTUP_FILE "startup_stm32h757xx.s"
193203
#elif defined(STM32L010x4)
194204
#define CMSIS_STARTUP_FILE "startup_stm32l010x4.s"
195205
#elif defined(STM32L010x6)

0 commit comments

Comments
 (0)