Skip to content

Commit 3270a50

Browse files
authored
Merge branch 'stm32duino:main' into main
2 parents 3ec6fbb + 07e97a5 commit 3270a50

File tree

311 files changed

+169646
-198
lines changed

Some content is hidden

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

311 files changed

+169646
-198
lines changed

CI/build/conf/cores_config.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@
5353
"GENERIC_C092CBTX",
5454
"GENERIC_C092CBUX",
5555
"GENERIC_C092CCTX",
56+
"GENERIC_C092RBTX",
57+
"GENERIC_C092RCIX",
5658
"GENERIC_F031C4TX",
5759
"GENERIC_F031E6YX",
5860
"GENERIC_F031F4PX",
@@ -244,6 +246,7 @@
244246
"GENERIC_F411CCYX",
245247
"GENERIC_F411CEUX",
246248
"GENERIC_F411RCTX",
249+
"GENERIC_F411VCTX",
247250
"GENERIC_F412CEUX",
248251
"GENERIC_F412RETX",
249252
"GENERIC_F412REYX",
@@ -889,6 +892,11 @@
889892
"GENERIC_WB55VGQX",
890893
"GENERIC_WB55VGYX",
891894
"GENERIC_WBA55CEUX",
895+
"GENERIC_WL33C8VX",
896+
"GENERIC_WL33C8VXX",
897+
"GENERIC_WL33CBVX",
898+
"GENERIC_WL33CBVXX",
899+
"GENERIC_WL33CCVX",
892900
"GENERIC_WL54CCUX",
893901
"GENERIC_WL54JCIX",
894902
"GENERIC_WL55CCUX",

CI/build/conf/cores_config_ci.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@
5353
"GENERIC_C092CBTX",
5454
"GENERIC_C092CBUX",
5555
"GENERIC_C092CCTX",
56+
"GENERIC_C092RBTX",
57+
"GENERIC_C092RCIX",
5658
"GENERIC_F031C4TX",
5759
"GENERIC_F031E6YX",
5860
"GENERIC_F031F4PX",
@@ -244,6 +246,7 @@
244246
"GENERIC_F411CCYX",
245247
"GENERIC_F411CEUX",
246248
"GENERIC_F411RCTX",
249+
"GENERIC_F411VCTX",
247250
"GENERIC_F412CEUX",
248251
"GENERIC_F412RETX",
249252
"GENERIC_F412REYX",
@@ -889,6 +892,11 @@
889892
"GENERIC_WB55VGQX",
890893
"GENERIC_WB55VGYX",
891894
"GENERIC_WBA55CEUX",
895+
"GENERIC_WL33C8VX",
896+
"GENERIC_WL33C8VXX",
897+
"GENERIC_WL33CBVX",
898+
"GENERIC_WL33CBVXX",
899+
"GENERIC_WL33CCVX",
892900
"GENERIC_WL54CCUX",
893901
"GENERIC_WL54JCIX",
894902
"GENERIC_WL55CCUX",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
From d4316ffbdd8fb8eb5863d9198422b832aafd44c6 Mon Sep 17 00:00:00 2001
2+
From: Frederic Pillon <frederic.pillon@st.com>
3+
Date: Tue, 23 Sep 2025 09:50:23 +0200
4+
Subject: [PATCH 1/1] feat(wl3): add __libc_init_array call to startup
5+
6+
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
7+
---
8+
.../ST/STM32WL3x/Source/Templates/gcc/startup_stm32wl3xx.s | 2 ++
9+
1 file changed, 2 insertions(+)
10+
11+
diff --git a/system/Drivers/CMSIS/Device/ST/STM32WL3x/Source/Templates/gcc/startup_stm32wl3xx.s b/system/Drivers/CMSIS/Device/ST/STM32WL3x/Source/Templates/gcc/startup_stm32wl3xx.s
12+
index 68b8c7ab4..28bf2e6da 100644
13+
--- a/system/Drivers/CMSIS/Device/ST/STM32WL3x/Source/Templates/gcc/startup_stm32wl3xx.s
14+
+++ b/system/Drivers/CMSIS/Device/ST/STM32WL3x/Source/Templates/gcc/startup_stm32wl3xx.s
15+
@@ -83,6 +83,8 @@ LoopFillZerobss:
16+
cmp r2, r3
17+
bcc FillZerobss
18+
19+
+/* Call static constructors */
20+
+ bl __libc_init_array
21+
/* Call the application's entry point.*/
22+
bl main
23+
24+
--
25+
2.34.1
26+

0 commit comments

Comments
 (0)