Skip to content

Commit 3eb3528

Browse files
committed
core(U5): update wrapped files
Signed-off-by: Alexandre Bourdiol <[email protected]>
1 parent c03979c commit 3eb3528

File tree

7 files changed

+32
-0
lines changed

7 files changed

+32
-0
lines changed

cores/arduino/stm32/stm32_def_build.h

+8
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,14 @@
414414
#define CMSIS_STARTUP_FILE "startup_stm32u575xx.s"
415415
#elif defined(STM32U585xx)
416416
#define CMSIS_STARTUP_FILE "startup_stm32u585xx.s"
417+
#elif defined(STM32U595xx)
418+
#define CMSIS_STARTUP_FILE "startup_stm32u595xx.s"
419+
#elif defined(STM32U599xx)
420+
#define CMSIS_STARTUP_FILE "startup_stm32u599xx.s"
421+
#elif defined(STM32U5A5xx)
422+
#define CMSIS_STARTUP_FILE "startup_stm32u5a5xx.s"
423+
#elif defined(STM32U5A9xx)
424+
#define CMSIS_STARTUP_FILE "startup_stm32u5a9xx.s"
417425
#elif defined(STM32WB10xx)
418426
#define CMSIS_STARTUP_FILE "startup_stm32wb10xx_cm4.s"
419427
#elif defined(STM32WB15xx)

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_dsi.c

+2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@
1010
#include "stm32h7xx_hal_dsi.c"
1111
#elif STM32L4xx
1212
#include "stm32l4xx_hal_dsi.c"
13+
#elif STM32U5xx
14+
#include "stm32u5xx_hal_dsi.c"
1315
#endif
1416
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_gfxmmu.c

+2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@
66
#include "stm32h7xx_hal_gfxmmu.c"
77
#elif STM32L4xx
88
#include "stm32l4xx_hal_gfxmmu.c"
9+
#elif STM32U5xx
10+
#include "stm32u5xx_hal_gfxmmu.c"
911
#endif
1012
#pragma GCC diagnostic pop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/* HAL raised several warnings, ignore them */
2+
#pragma GCC diagnostic push
3+
#pragma GCC diagnostic ignored "-Wunused-parameter"
4+
5+
#ifdef STM32U5xx
6+
#include "stm32u5xx_hal_gpu2d.c"
7+
#endif
8+
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_ltdc.c

+2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@
1010
#include "stm32h7xx_hal_ltdc.c"
1111
#elif STM32L4xx
1212
#include "stm32l4xx_hal_ltdc.c"
13+
#elif STM32U5xx
14+
#include "stm32u5xx_hal_ltdc.c"
1315
#endif
1416
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_ltdc_ex.c

+2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@
1010
#include "stm32h7xx_hal_ltdc_ex.c"
1111
#elif STM32L4xx
1212
#include "stm32l4xx_hal_ltdc_ex.c"
13+
#elif STM32U5xx
14+
#include "stm32u5xx_hal_ltdc_ex.c"
1315
#endif
1416
#pragma GCC diagnostic pop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/* HAL raised several warnings, ignore them */
2+
#pragma GCC diagnostic push
3+
#pragma GCC diagnostic ignored "-Wunused-parameter"
4+
5+
#ifdef STM32U5xx
6+
#include "stm32u5xx_hal_xspi.c"
7+
#endif
8+
#pragma GCC diagnostic pop

0 commit comments

Comments
 (0)