Skip to content

Commit fa99328

Browse files
committed
core(wba): update wrapped files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent a254eee commit fa99328

File tree

6 files changed

+20
-0
lines changed

6 files changed

+20
-0
lines changed

cores/arduino/stm32/stm32_def_build.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,16 @@
492492
#define CMSIS_STARTUP_FILE "startup_stm32wba55xx.s"
493493
#elif defined(STM32WBA5Mxx)
494494
#define CMSIS_STARTUP_FILE "startup_stm32wba5mxx.s"
495+
#elif defined(STM32WBA62xx)
496+
#define CMSIS_STARTUP_FILE "startup_stm32wba62xx.s"
497+
#elif defined(STM32WBA63xx)
498+
#define CMSIS_STARTUP_FILE "startup_stm32wba63xx.s"
499+
#elif defined(STM32WBA64xx)
500+
#define CMSIS_STARTUP_FILE "startup_stm32wba64xx.s"
501+
#elif defined(STM32WBA65xx)
502+
#define CMSIS_STARTUP_FILE "startup_stm32wba65xx.s"
503+
#elif defined(STM32WBA6Mxx)
504+
#define CMSIS_STARTUP_FILE "startup_stm32wba6mxx.s"
495505
#elif defined(STM32WB10xx)
496506
#define CMSIS_STARTUP_FILE "startup_stm32wb10xx_cm4.s"
497507
#elif defined(STM32WB15xx)

libraries/SrcWrapper/inc/LL/stm32yyxx_ll_usb.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
#include "stm32u5xx_ll_usb.h"
4747
#elif STM32WBxx
4848
#include "stm32wbxx_ll_usb.h"
49+
#elif STM32WBAxx
50+
#include "stm32wbaxx_ll_usb.h"
4951
#endif
5052
#pragma GCC diagnostic pop
5153
#endif /* _STM32YYXX_LL_USB_H_ */

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_hcd.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@
2424
#include "stm32u3xx_hal_hcd.c"
2525
#elif STM32U5xx
2626
#include "stm32u5xx_hal_hcd.c"
27+
#elif STM32WBAxx
28+
#include "stm32wbaxx_hal_hcd.c"
2729
#endif
2830
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_pcd.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,7 @@
4040
#include "stm32u5xx_hal_pcd.c"
4141
#elif STM32WBxx
4242
#include "stm32wbxx_hal_pcd.c"
43+
#elif STM32WBAxx
44+
#include "stm32wbaxx_hal_pcd.c"
4345
#endif
4446
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_pcd_ex.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,7 @@
4040
#include "stm32u5xx_hal_pcd_ex.c"
4141
#elif STM32WBxx
4242
#include "stm32wbxx_hal_pcd_ex.c"
43+
#elif STM32WBAxx
44+
#include "stm32wbaxx_hal_pcd_ex.c"
4345
#endif
4446
#pragma GCC diagnostic pop

libraries/SrcWrapper/src/LL/stm32yyxx_ll_usb.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,7 @@
4040
#include "stm32u5xx_ll_usb.c"
4141
#elif STM32WBxx
4242
#include "stm32wbxx_ll_usb.c"
43+
#elif STM32WBAxx
44+
#include "stm32wbaxx_ll_usb.c"
4345
#endif
4446
#pragma GCC diagnostic pop

0 commit comments

Comments
 (0)