Skip to content

Commit 72de85c

Browse files
authored
Merge pull request #4417 from monkiineko/master
STM32: Fix 32-bit us ticker interrupt scheduling
2 parents 3c3e35d + 260378e commit 72de85c

File tree

49 files changed

+52
-0
lines changed

Some content is hidden

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

49 files changed

+52
-0
lines changed

targets/TARGET_STM/TARGET_STM32F0/TARGET_DISCO_F051R8/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM1

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F030R8/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM1

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F031K6/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ extern "C" {
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM2

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F042K6/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ extern "C" {
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h":
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM2

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM1

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM2

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F091RC/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f0xx.h"
43+
#include "stm32f0xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM2

targets/TARGET_STM/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f1xx.h"
43+
#include "stm32f1xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM4

targets/TARGET_STM/TARGET_STM32F1/TARGET_DISCO_F100RB/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f1xx.h"
43+
#include "stm32f1xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM4

targets/TARGET_STM/TARGET_STM32F1/TARGET_NUCLEO_F103RB/device/hal_tick.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#endif
4141

4242
#include "stm32f1xx.h"
43+
#include "stm32f1xx_ll_tim.h"
4344
#include "cmsis_nvic.h"
4445

4546
#define TIM_MST TIM4

0 commit comments

Comments
 (0)