Skip to content

Commit c82d744

Browse files
committed
core(wba): update wrapped files
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent 05aa8eb commit c82d744

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed

cores/arduino/stm32/stm32_def_build.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,12 @@
482482
#define CMSIS_STARTUP_FILE "startup_stm32wb07.s"
483483
#elif defined(STM32WB09)
484484
#define CMSIS_STARTUP_FILE "startup_stm32wb09.s"
485+
#elif defined(STM32WBA20xx)
486+
#define CMSIS_STARTUP_FILE "startup_stm32wba20xx.s"
487+
#elif defined(STM32WBA23xx)
488+
#define CMSIS_STARTUP_FILE "startup_stm32wba23xx.s"
489+
#elif defined(STM32WBA25xx)
490+
#define CMSIS_STARTUP_FILE "startup_stm32wba25xx.s"
485491
#elif defined(STM32WBA50xx)
486492
#define CMSIS_STARTUP_FILE "startup_stm32wba50xx.s"
487493
#elif defined(STM32WBA52xx)

libraries/SrcWrapper/inc/LL/stm32yyxx_ll_dlyb.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#include "stm32u3xx_ll_dlyb.h"
1515
#elif STM32U5xx
1616
#include "stm32u5xx_ll_dlyb.h"
17+
#elif STM32WBAxx
18+
#include "stm32wbaxx_ll_dlyb.h"
1719
#endif
1820
#pragma GCC diagnostic pop
1921
#endif /* _STM32YYXX_LL_DLYB_H_ */

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_otfdec.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@
1010
#include "stm32l5xx_hal_otfdec.c"
1111
#elif STM32U5xx
1212
#include "stm32u5xx_hal_otfdec.c"
13+
#elif STM32WBAxx
14+
#include "stm32wbaxx_hal_otfdec.c"
1315
#endif
1416
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_xspi.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
#include "stm32u3xx_hal_xspi.c"
99
#elif STM32U5xx
1010
#include "stm32u5xx_hal_xspi.c"
11+
#elif STM32WBAxx
12+
#include "stm32wbaxx_hal_xspi.c"
1113
#endif
1214
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/LL/stm32yyxx_ll_dlyb.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
#include "stm32u3xx_ll_dlyb.c"
99
#elif STM32U5xx
1010
#include "stm32u5xx_ll_dlyb.c"
11+
#elif STM32WBAxx
12+
#include "stm32wbaxx_ll_dlyb.c"
1113
#endif
1214
#pragma GCC diagnostic pop

0 commit comments

Comments
 (0)