STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
stm32l4xx_hal_timebase.c
Go to the documentation of this file.
1 
14 /* Includes ------------------------------------------------------------------*/
15 #include "stm32l4xx_hal.h"
16 #include "stm32l4xx_hal_tim.h"
17 
18 /* Private variables ---------------------------------------------------------*/
20 TIM_HandleTypeDef htim17;
21 
33 HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority)
34 {
35  HAL_StatusTypeDef result;
36  RCC_ClkInitTypeDef rccClockConfig = {0U};
37  uint32_t clockFrequency = 0U;
38  uint32_t clockPrescaler = 0U;
39  uint32_t flashLatency;
40 
41  /* Set the global tick interrupt priority variable */
42  uwTickPrio = TickPriority;
43 
44  /* Configure the timer IRQ priority */
45  HAL_NVIC_SetPriority(TIM1_TRG_COM_TIM17_IRQn, TickPriority, 0U);
46 
47  /* Enable the timer global Interrupt */
48  HAL_NVIC_EnableIRQ(TIM1_TRG_COM_TIM17_IRQn);
49 
50  /* Enable timer clock */
51  __HAL_RCC_TIM17_CLK_ENABLE();
52 
53  /* Compute the prescaler value to have the timer clock equal to 1MHz */
54  HAL_RCC_GetClockConfig(&rccClockConfig, &flashLatency);
55  clockFrequency = HAL_RCC_GetPCLK2Freq();
56  clockPrescaler = (uint32_t)((clockFrequency / 1000000U) - 1U);
57 
58  /* Initialize timer */
59  htim17.Instance = TIM17;
60  htim17.Init.CounterMode = TIM_COUNTERMODE_UP;
61  htim17.Init.ClockDivision = 0U;
62  htim17.Init.Period = (1000000U / 1000U) - 1U;
63  htim17.Init.Prescaler = clockPrescaler;
64 
65  result = HAL_TIM_Base_Init(&htim17);
66  if(result == HAL_OK)
67  {
68  /* Start the TIM time Base generation in interrupt mode */
69  result = HAL_TIM_Base_Start_IT(&htim17);
70  }
71 
72  return result;
73 }
74 
81 void HAL_SuspendTick(void)
82 {
83  __HAL_TIM_DISABLE_IT(&htim17, TIM_IT_UPDATE);
84 }
85 
92 void HAL_ResumeTick(void)
93 {
94  __HAL_TIM_ENABLE_IT(&htim17, TIM_IT_UPDATE);
95 }
HAL_InitTick
HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority)
This function configures the TIM17 as the HAL time base source.
Definition: stm32l4xx_hal_timebase.c:33
HAL_ResumeTick
void HAL_ResumeTick(void)
Resume the tick increment.
Definition: stm32l4xx_hal_timebase.c:92
HAL_SuspendTick
void HAL_SuspendTick(void)
Suspend the tick increment.
Definition: stm32l4xx_hal_timebase.c:81
htim17
TIM_HandleTypeDef htim17
Definition: stm32l4xx_hal_timebase.c:20