Skip to content

Commit af4d1c1

Browse files
committed
core(C0): update wrapped files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 2d39155 commit af4d1c1

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Diff for: cores/arduino/stm32/stm32_def_build.h

+6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@
66
#define CMSIS_STARTUP_FILE "startup_stm32c011xx.s"
77
#elif defined(STM32C031xx)
88
#define CMSIS_STARTUP_FILE "startup_stm32c031xx.s"
9+
#elif defined(STM32C051xx)
10+
#define CMSIS_STARTUP_FILE "startup_stm32c051xx.s"
911
#elif defined(STM32C071xx)
1012
#define CMSIS_STARTUP_FILE "startup_stm32c071xx.s"
13+
#elif defined(STM32C091xx)
14+
#define CMSIS_STARTUP_FILE "startup_stm32c091xx.s"
15+
#elif defined(STM32C092xx)
16+
#define CMSIS_STARTUP_FILE "startup_stm32c092xx.s"
1117
#elif defined(STM32F030x6)
1218
#define CMSIS_STARTUP_FILE "startup_stm32f030x6.s"
1319
#elif defined(STM32F030x8)

Diff for: libraries/SrcWrapper/src/HAL/stm32yyxx_hal_fdcan.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#pragma GCC diagnostic push
33
#pragma GCC diagnostic ignored "-Wunused-parameter"
44

5-
#ifdef STM32G0xx
5+
#ifdef STM32C0xx
6+
#include "stm32c0xx_hal_fdcan.c"
7+
#elif STM32G0xx
68
#include "stm32g0xx_hal_fdcan.c"
79
#elif STM32G4xx
810
#include "stm32g4xx_hal_fdcan.c"

0 commit comments

Comments
 (0)