Skip to content

Commit eb32c32

Browse files
committed
[F3] Update HAL/LL wrapper files
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 195a4eb commit eb32c32

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
@@ -14,6 +14,9 @@
1414
#ifdef STM32F2xx
1515
#include "stm32f2xx_ll_usb.h"
1616
#endif
17+
#ifdef STM32F3xx
18+
#include "stm32f3xx_ll_usb.h"
19+
#endif
1720
#ifdef STM32F4xx
1821
#include "stm32f4xx_ll_usb.h"
1922
#endif

libraries/SrcWrapper/src/HAL/stm32yyxx_hal_exti.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F2xx
88
#include "stm32f2xx_hal_exti.c"
99
#endif
10+
#ifdef STM32F3xx
11+
#include "stm32f3xx_hal_exti.c"
12+
#endif
1013
#ifdef STM32F4xx
1114
#include "stm32f4xx_hal_exti.c"
1215
#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,6 +1,9 @@
11
#ifdef STM32F0xx
22
#include "stm32f0xx_hal_usart_ex.c"
33
#endif
4+
#ifdef STM32F3xx
5+
#include "stm32f3xx_hal_usart_ex.c"
6+
#endif
47
#ifdef STM32G0xx
58
#include "stm32g0xx_hal_usart_ex.c"
69
#endif

libraries/SrcWrapper/src/LL/stm32yyxx_ll_usb.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F2xx
88
#include "stm32f2xx_ll_usb.c"
99
#endif
10+
#ifdef STM32F3xx
11+
#include "stm32f3xx_ll_usb.c"
12+
#endif
1013
#ifdef STM32F4xx
1114
#include "stm32f4xx_ll_usb.c"
1215
#endif

0 commit comments

Comments
 (0)