Skip to content

[HAL/LL/CMSIS] Update F4, F7 and L0 series #457

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Feb 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions cores/arduino/stm32/HAL/stm32yyxx_hal_exti.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#ifdef STM32F4xx
#include "stm32f4xx_hal_exti.c"
#endif
#ifdef STM32F7xx
#include "stm32f7xx_hal_exti.c"
#endif
#ifdef STM32H7xx
#include "stm32h7xx_hal_exti.c"
#endif
Expand Down
3 changes: 3 additions & 0 deletions cores/arduino/stm32/HAL/stm32yyxx_hal_smbus.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
#ifdef STM32F3xx
#include "stm32f3xx_hal_smbus.c"
#endif
#ifdef STM32F4xx
#include "stm32f4xx_hal_smbus.c"
#endif
#ifdef STM32F7xx
#include "stm32f7xx_hal_smbus.c"
#endif
Expand Down
3 changes: 3 additions & 0 deletions cores/arduino/stm32/HAL/stm32yyxx_hal_spi_ex.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#ifdef STM32F3xx
#include "stm32f3xx_hal_spi_ex.c"
#endif
#ifdef STM32F7xx
#include "stm32f7xx_hal_spi_ex.c"
#endif
#ifdef STM32H7xx
#include "stm32h7xx_hal_spi_ex.c"
#endif
Expand Down
3 changes: 3 additions & 0 deletions cores/arduino/stm32/HAL/stm32yyxx_hal_uart_ex.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
#ifdef STM32F3xx
#include "stm32f3xx_hal_uart_ex.c"
#endif
#ifdef STM32F7xx
#include "stm32f7xx_hal_uart_ex.c"
#endif
#ifdef STM32H7xx
#include "stm32h7xx_hal_uart_ex.c"
#endif
Expand Down
Loading