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 446446 #define CMSIS_STARTUP_FILE "startup_stm32u073xx.s"
447447 #elif defined(STM32U083xx )
448448 #define CMSIS_STARTUP_FILE "startup_stm32u083xx.s"
449+ #elif defined(STM32U356xx )
450+ #define CMSIS_STARTUP_FILE "startup_stm32u356xx.s"
451+ #elif defined(STM32U366xx )
452+ #define CMSIS_STARTUP_FILE "startup_stm32u366xx.s"
449453 #elif defined(STM32U375xx )
450454 #define CMSIS_STARTUP_FILE "startup_stm32u375xx.s"
451455 #elif defined(STM32U385xx )
452456 #define CMSIS_STARTUP_FILE "startup_stm32u385xx.s"
457+ #elif defined(STM32U3B5xx )
458+ #define CMSIS_STARTUP_FILE "startup_stm32u3b5xx.s"
459+ #elif defined(STM32U3C5xx )
460+ #define CMSIS_STARTUP_FILE "startup_stm32u3c5xx.s"
453461 #elif defined(STM32U535xx )
454462 #define CMSIS_STARTUP_FILE "startup_stm32u535xx.s"
455463 #elif defined(STM32U545xx )
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 STM32U3xx
6+ #include "stm32u3xx_hal_hsp.c"
7+ #endif
8+ #pragma GCC diagnostic pop
Original file line number Diff line number Diff line change 1010 #include "stm32l4xx_hal_lcd.c"
1111#elif STM32U0xx
1212 #include "stm32u0xx_hal_lcd.c"
13+ #elif STM32U3xx
14+ #include "stm32u3xx_hal_lcd.c"
1315#elif STM32WBxx
1416 #include "stm32wbxx_hal_lcd.c"
1517#elif STM32WL3x
You can’t perform that action at this time.
0 commit comments