File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
libraries/SrcWrapper/src/HAL Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 438438 #define CMSIS_STARTUP_FILE "startup_stm32u5a5xx.s"
439439 #elif defined(STM32U5A9xx )
440440 #define CMSIS_STARTUP_FILE "startup_stm32u5a9xx.s"
441+ #elif defined(STM32U5F7xx )
442+ #define CMSIS_STARTUP_FILE "startup_stm32u5f7xx.s"
443+ #elif defined(STM32U5F9xx )
444+ #define CMSIS_STARTUP_FILE "startup_stm32u5f9xx.s"
445+ #elif defined(STM32U5G7xx )
446+ #define CMSIS_STARTUP_FILE "startup_stm32u5g7xx.s"
447+ #elif defined(STM32U5G9xx )
448+ #define CMSIS_STARTUP_FILE "startup_stm32u5g9xx.s"
441449 #elif defined(STM32WB10xx )
442450 #define CMSIS_STARTUP_FILE "startup_stm32wb10xx_cm4.s"
443451 #elif defined(STM32WB15xx )
Original file line number Diff line number Diff line change 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_gfxtim.c"
7+ #endif
8+ #pragma GCC diagnostic pop
Original file line number Diff line number Diff line change 66 #include "stm32f7xx_hal_jpeg.c"
77#elif STM32H7xx
88 #include "stm32h7xx_hal_jpeg.c"
9+ #elif STM32U5xx
10+ #include "stm32u5xx_hal_jpeg.c"
911#endif
1012#pragma GCC diagnostic pop
You can’t perform that action at this time.
0 commit comments