Skip to content

Commit 0190fbe

Browse files
committed
[F7] Update HAL/LL wrapper files
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 625914c commit 0190fbe

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

cores/arduino/stm32/HAL/stm32yyxx_hal_exti.c

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#ifdef STM32F4xx
22
#include "stm32f4xx_hal_exti.c"
33
#endif
4+
#ifdef STM32F7xx
5+
#include "stm32f7xx_hal_exti.c"
6+
#endif
47
#ifdef STM32H7xx
58
#include "stm32h7xx_hal_exti.c"
69
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_spi_ex.c

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifdef STM32F3xx
88
#include "stm32f3xx_hal_spi_ex.c"
99
#endif
10+
#ifdef STM32F7xx
11+
#include "stm32f7xx_hal_spi_ex.c"
12+
#endif
1013
#ifdef STM32H7xx
1114
#include "stm32h7xx_hal_spi_ex.c"
1215
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_uart_ex.c

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F3xx
55
#include "stm32f3xx_hal_uart_ex.c"
66
#endif
7+
#ifdef STM32F7xx
8+
#include "stm32f7xx_hal_uart_ex.c"
9+
#endif
710
#ifdef STM32H7xx
811
#include "stm32h7xx_hal_uart_ex.c"
912
#endif

0 commit comments

Comments
 (0)