Skip to content

Commit 734f525

Browse files
authored
Merge pull request #2928 from fpistm/stm32cubewba_update
chore(wba): update to latest STM32CubeWBA v1.9.0
2 parents 3412f68 + a1e1d9b commit 734f525

File tree

148 files changed

+49998
-513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+49998
-513
lines changed

cores/arduino/stm32/stm32_def_build.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,12 @@
490490
#define CMSIS_STARTUP_FILE "startup_stm32wb07.s"
491491
#elif defined(STM32WB09)
492492
#define CMSIS_STARTUP_FILE "startup_stm32wb09.s"
493+
#elif defined(STM32WBA20xx)
494+
#define CMSIS_STARTUP_FILE "startup_stm32wba20xx.s"
495+
#elif defined(STM32WBA23xx)
496+
#define CMSIS_STARTUP_FILE "startup_stm32wba23xx.s"
497+
#elif defined(STM32WBA25xx)
498+
#define CMSIS_STARTUP_FILE "startup_stm32wba25xx.s"
493499
#elif defined(STM32WBA50xx)
494500
#define CMSIS_STARTUP_FILE "startup_stm32wba50xx.s"
495501
#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)