We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c68bf9 commit 100d972Copy full SHA for 100d972
3 files changed
cores/arduino/stm32/stm32_def_build.h
@@ -266,8 +266,6 @@
266
#define CMSIS_STARTUP_FILE "startup_stm32l052xx.s"
267
#elif defined(STM32L053xx)
268
#define CMSIS_STARTUP_FILE "startup_stm32l053xx.s"
269
- #elif defined(STM32L061xx)
270
- #define CMSIS_STARTUP_FILE "startup_stm32l061xx.s"
271
#elif defined(STM32L062xx)
272
#define CMSIS_STARTUP_FILE "startup_stm32l062xx.s"
273
#elif defined(STM32L063xx)
libraries/SrcWrapper/src/HAL/stm32yyxx_hal_exti.c
@@ -25,6 +25,9 @@
25
#ifdef STM32H7xx
26
#include "stm32h7xx_hal_exti.c"
27
#endif
28
+#ifdef STM32L0xx
29
+ #include "stm32l0xx_hal_exti.c"
30
+#endif
31
#ifdef STM32L1xx
32
#include "stm32l1xx_hal_exti.c"
33
libraries/SrcWrapper/src/HAL/stm32yyxx_hal_smbus_ex.c
@@ -0,0 +1,3 @@
1
2
+ #include "stm32l0xx_hal_smbus_ex.c"
3
0 commit comments