Skip to content

Commit 4f94566

Browse files
committed
G0: update wrapped files
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent eb8346a commit 4f94566

File tree

9 files changed

+36
-0
lines changed

9 files changed

+36
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll_crs.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#ifdef STM32F0xx
99
#include "stm32f0xx_ll_crs.h"
1010
#endif
11+
#ifdef STM32G0xx
12+
#include "stm32g0xx_ll_crs.h"
13+
#endif
1114
#ifdef STM32G4xx
1215
#include "stm32g4xx_ll_crs.h"
1316
#endif

cores/arduino/stm32/LL/stm32yyxx_ll_usb.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
#ifdef STM32F7xx
2424
#include "stm32f7xx_ll_usb.h"
2525
#endif
26+
#ifdef STM32G0xx
27+
#include "stm32g0xx_ll_usb.h"
28+
#endif
2629
#ifdef STM32G4xx
2730
#include "stm32g4xx_ll_usb.h"
2831
#endif

cores/arduino/stm32/stm32_def_build.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,24 @@
178178
#define CMSIS_STARTUP_FILE "startup_stm32g031xx.s"
179179
#elif defined(STM32G041xx)
180180
#define CMSIS_STARTUP_FILE "startup_stm32g041xx.s"
181+
#elif defined(STM32G050xx)
182+
#define CMSIS_STARTUP_FILE "startup_stm32g050xx.s"
183+
#elif defined(STM32G051xx)
184+
#define CMSIS_STARTUP_FILE "startup_stm32g051xx.s"
185+
#elif defined(STM32G061xx)
186+
#define CMSIS_STARTUP_FILE "startup_stm32g061xx.s"
181187
#elif defined(STM32G070xx)
182188
#define CMSIS_STARTUP_FILE "startup_stm32g070xx.s"
183189
#elif defined(STM32G071xx)
184190
#define CMSIS_STARTUP_FILE "startup_stm32g071xx.s"
185191
#elif defined(STM32G081xx)
186192
#define CMSIS_STARTUP_FILE "startup_stm32g081xx.s"
193+
#elif defined(STM32G0B0xx)
194+
#define CMSIS_STARTUP_FILE "startup_stm32g0b0xx.s"
195+
#elif defined(STM32G0B1xx)
196+
#define CMSIS_STARTUP_FILE "startup_stm32g0b1xx.s"
197+
#elif defined(STM32G0C1xx)
198+
#define CMSIS_STARTUP_FILE "startup_stm32g0c1xx.s"
187199
#elif defined(STM32G431xx)
188200
#define CMSIS_STARTUP_FILE "startup_stm32g431xx.s"
189201
#elif defined(STM32G441xx)

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_fdcan.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32G0xx
2+
#include "stm32g0xx_hal_fdcan.c"
3+
#endif
14
#ifdef STM32G4xx
25
#include "stm32g4xx_hal_fdcan.c"
36
#endif

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_hcd.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#ifdef STM32F7xx
1111
#include "stm32f7xx_hal_hcd.c"
1212
#endif
13+
#ifdef STM32G0xx
14+
#include "stm32g0xx_hal_hcd.c"
15+
#endif
1316
#ifdef STM32H7xx
1417
#include "stm32h7xx_hal_hcd.c"
1518
#endif

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_pcd.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_pcd.c"
1818
#endif
19+
#ifdef STM32G0xx
20+
#include "stm32g0xx_hal_pcd.c"
21+
#endif
1922
#ifdef STM32G4xx
2023
#include "stm32g4xx_hal_pcd.c"
2124
#endif

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_pcd_ex.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_hal_pcd_ex.c"
1818
#endif
19+
#ifdef STM32G0xx
20+
#include "stm32g0xx_hal_pcd_ex.c"
21+
#endif
1922
#ifdef STM32G4xx
2023
#include "stm32g4xx_hal_pcd_ex.c"
2124
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_crs.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#ifdef STM32F0xx
22
#include "stm32f0xx_ll_crs.c"
33
#endif
4+
#ifdef STM32G0xx
5+
#include "stm32g0xx_ll_crs.c"
6+
#endif
47
#ifdef STM32G4xx
58
#include "stm32g4xx_ll_crs.c"
69
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_usb.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
#ifdef STM32F7xx
1717
#include "stm32f7xx_ll_usb.c"
1818
#endif
19+
#ifdef STM32G0xx
20+
#include "stm32g0xx_ll_usb.c"
21+
#endif
1922
#ifdef STM32G4xx
2023
#include "stm32g4xx_ll_usb.c"
2124
#endif

0 commit comments

Comments
 (0)