Skip to content

Commit 737c980

Browse files
committed
[F0] Update HAL/LL wrapper files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 74a2cfd commit 737c980

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

cores/arduino/stm32/LL/stm32yyxx_ll_usb.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
#pragma GCC diagnostic ignored "-Wunused-parameter"
66
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
77

8+
#ifdef STM32F0xx
9+
#include "stm32f0xx_ll_usb.h"
10+
#endif
811
#ifdef STM32F1xx
912
#include "stm32f1xx_ll_usb.h"
1013
#endif

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_exti.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32F0xx
2+
#include "stm32f0xx_hal_exti.c"
3+
#endif
14
#ifdef STM32F1xx
25
#include "stm32f1xx_hal_exti.c"
36
#endif

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_usart_ex.c

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

libraries/SrcWrapper/src/LL/stm32yyxx_ll_usb.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifdef STM32F0xx
2+
#include "stm32f0xx_ll_usb.c"
3+
#endif
14
#ifdef STM32F1xx
25
#include "stm32f1xx_ll_usb.c"
36
#endif

0 commit comments

Comments
 (0)