Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1698baf

Browse files
authoredJul 23, 2024··
Merge pull request #2420 from fpistm/STM32CubeC0_update
chore(c0): update to latest STM32CubeC0 v1.2.0
2 parents 73e0c84 + af7c70c commit 1698baf

File tree

204 files changed

+33057
-3035
lines changed

Some content is hidden

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

204 files changed

+33057
-3035
lines changed
 

‎cores/arduino/stm32/stm32_def_build.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#define CMSIS_STARTUP_FILE "startup_stm32c011xx.s"
77
#elif defined(STM32C031xx)
88
#define CMSIS_STARTUP_FILE "startup_stm32c031xx.s"
9+
#elif defined(STM32C071xx)
10+
#define CMSIS_STARTUP_FILE "startup_stm32c071xx.s"
911
#elif defined(STM32F030x6)
1012
#define CMSIS_STARTUP_FILE "startup_stm32f030x6.s"
1113
#elif defined(STM32F030x8)

‎libraries/SrcWrapper/inc/LL/stm32yyxx_ll_crs.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
#pragma GCC diagnostic ignored "-Wregister"
99
#endif
1010

11-
#ifdef STM32F0xx
11+
#ifdef STM32C0xx
12+
#include "stm32c0xx_ll_crs.h"
13+
#elif STM32F0xx
1214
#include "stm32f0xx_ll_crs.h"
1315
#elif STM32G0xx
1416
#include "stm32g0xx_ll_crs.h"

0 commit comments

Comments
 (0)
Please sign in to comment.