Skip to content

Commit 3a7996f

Browse files
authored
Merge pull request #457 from fpistm/HAL_update
[HAL/LL/CMSIS] Update F4, F7 and L0 series
2 parents 9c97364 + 47ce70c commit 3a7996f

File tree

529 files changed

+418017
-384440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

529 files changed

+418017
-384440
lines changed

cores/arduino/stm32/HAL/stm32yyxx_hal_exti.c

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#ifdef STM32F4xx
2+
#include "stm32f4xx_hal_exti.c"
3+
#endif
4+
#ifdef STM32F7xx
5+
#include "stm32f7xx_hal_exti.c"
6+
#endif
17
#ifdef STM32H7xx
28
#include "stm32h7xx_hal_exti.c"
39
#endif

cores/arduino/stm32/HAL/stm32yyxx_hal_smbus.c

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#ifdef STM32F3xx
55
#include "stm32f3xx_hal_smbus.c"
66
#endif
7+
#ifdef STM32F4xx
8+
#include "stm32f4xx_hal_smbus.c"
9+
#endif
710
#ifdef STM32F7xx
811
#include "stm32f7xx_hal_smbus.c"
912
#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)