Skip to content

Commit 100d972

Browse files
committed
[L0] Update wrapped files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 8c68bf9 commit 100d972

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

cores/arduino/stm32/stm32_def_build.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,6 @@
266266
#define CMSIS_STARTUP_FILE "startup_stm32l052xx.s"
267267
#elif defined(STM32L053xx)
268268
#define CMSIS_STARTUP_FILE "startup_stm32l053xx.s"
269-
#elif defined(STM32L061xx)
270-
#define CMSIS_STARTUP_FILE "startup_stm32l061xx.s"
271269
#elif defined(STM32L062xx)
272270
#define CMSIS_STARTUP_FILE "startup_stm32l062xx.s"
273271
#elif defined(STM32L063xx)

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_exti.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
#ifdef STM32H7xx
2626
#include "stm32h7xx_hal_exti.c"
2727
#endif
28+
#ifdef STM32L0xx
29+
#include "stm32l0xx_hal_exti.c"
30+
#endif
2831
#ifdef STM32L1xx
2932
#include "stm32l1xx_hal_exti.c"
3033
#endif
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#ifdef STM32L0xx
2+
#include "stm32l0xx_hal_smbus_ex.c"
3+
#endif

0 commit comments

Comments
 (0)