2 ******************************************************************************
3 * @file stm32h7xx_hal_lptim.c
4 * @author MCD Application Team
5 * @brief LPTIM HAL module driver.
6 * This file provides firmware functions to manage the following
7 * functionalities of the Low Power Timer (LPTIM) peripheral:
8 * + Initialization and de-initialization functions.
9 * + Start/Stop operation functions in polling mode.
10 * + Start/Stop operation functions in interrupt mode.
11 * + Reading operation functions.
12 * + Peripheral State functions.
15 ==============================================================================
16 ##### How to use this driver #####
17 ==============================================================================
19 The LPTIM HAL driver can be used as follows:
21 (#)Initialize the LPTIM low level resources by implementing the
23 (++) Enable the LPTIM interface clock using __HAL_RCC_LPTIMx_CLK_ENABLE().
24 (++) In case of using interrupts (e.g. HAL_LPTIM_PWM_Start_IT()):
25 (+++) Configure the LPTIM interrupt priority using HAL_NVIC_SetPriority().
26 (+++) Enable the LPTIM IRQ handler using HAL_NVIC_EnableIRQ().
27 (+++) In LPTIM IRQ handler, call HAL_LPTIM_IRQHandler().
29 (#)Initialize the LPTIM HAL using HAL_LPTIM_Init(). This function
31 (++) The instance: LPTIM1 or LPTIM2.
32 (++) Clock: the counter clock.
33 (+++) Source : it can be either the ULPTIM input (IN1) or one of
34 the internal clock; (APB, LSE, LSI or MSI).
35 (+++) Prescaler: select the clock divider.
36 (++) UltraLowPowerClock : To be used only if the ULPTIM is selected
37 as counter clock source.
38 (+++) Polarity: polarity of the active edge for the counter unit
39 if the ULPTIM input is selected.
40 (+++) SampleTime: clock sampling time to configure the clock glitch
42 (++) Trigger: How the counter start.
43 (+++) Source: trigger can be software or one of the hardware triggers.
44 (+++) ActiveEdge : only for hardware trigger.
45 (+++) SampleTime : trigger sampling time to configure the trigger
47 (++) OutputPolarity : 2 opposite polarities are possible.
48 (++) UpdateMode: specifies whether the update of the autoreload and
49 the compare values is done immediately or after the end of current
51 (++) Input1Source: Source selected for input1 (GPIO or comparator output).
52 (++) Input2Source: Source selected for input2 (GPIO or comparator output).
53 Input2 is used only for encoder feature so is used only for LPTIM1 instance.
55 (#)Six modes are available:
57 (++) PWM Mode: To generate a PWM signal with specified period and pulse,
58 call HAL_LPTIM_PWM_Start() or HAL_LPTIM_PWM_Start_IT() for interruption
61 (++) One Pulse Mode: To generate pulse with specified width in response
62 to a stimulus, call HAL_LPTIM_OnePulse_Start() or
63 HAL_LPTIM_OnePulse_Start_IT() for interruption mode.
65 (++) Set once Mode: In this mode, the output changes the level (from
66 low level to high level if the output polarity is configured high, else
67 the opposite) when a compare match occurs. To start this mode, call
68 HAL_LPTIM_SetOnce_Start() or HAL_LPTIM_SetOnce_Start_IT() for
71 (++) Encoder Mode: To use the encoder interface call
72 HAL_LPTIM_Encoder_Start() or HAL_LPTIM_Encoder_Start_IT() for
73 interruption mode. Only available for LPTIM1 instance.
75 (++) Time out Mode: an active edge on one selected trigger input rests
76 the counter. The first trigger event will start the timer, any
77 successive trigger event will reset the counter and the timer will
78 restart. To start this mode call HAL_LPTIM_TimeOut_Start_IT() or
79 HAL_LPTIM_TimeOut_Start_IT() for interruption mode.
81 (++) Counter Mode: counter can be used to count external events on
82 the LPTIM Input1 or it can be used to count internal clock cycles.
83 To start this mode, call HAL_LPTIM_Counter_Start() or
84 HAL_LPTIM_Counter_Start_IT() for interruption mode.
87 (#) User can stop any process by calling the corresponding API:
88 HAL_LPTIM_Xxx_Stop() or HAL_LPTIM_Xxx_Stop_IT() if the process is
89 already started in interruption mode.
91 (#) De-initialize the LPTIM peripheral using HAL_LPTIM_DeInit().
93 *** Callback registration ***
94 =============================================
96 The compilation define USE_HAL_LPTIM_REGISTER_CALLBACKS when set to 1
97 allows the user to configure dynamically the driver callbacks.
99 Use Function @ref HAL_LPTIM_RegisterCallback() to register a callback.
100 @ref HAL_LPTIM_RegisterCallback() takes as parameters the HAL peripheral handle,
101 the Callback ID and a pointer to the user callback function.
103 Use function @ref HAL_LPTIM_UnRegisterCallback() to reset a callback to the
104 default weak function.
105 @ref HAL_LPTIM_UnRegisterCallback takes as parameters the HAL peripheral handle,
108 These functions allow to register/unregister following callbacks:
110 (+) MspInitCallback : LPTIM Base Msp Init Callback.
111 (+) MspDeInitCallback : LPTIM Base Msp DeInit Callback.
112 (+) CompareMatchCallback : Compare match Callback.
113 (+) AutoReloadMatchCallback : Auto-reload match Callback.
114 (+) TriggerCallback : External trigger event detection Callback.
115 (+) CompareWriteCallback : Compare register write complete Callback.
116 (+) AutoReloadWriteCallback : Auto-reload register write complete Callback.
117 (+) DirectionUpCallback : Up-counting direction change Callback.
118 (+) DirectionDownCallback : Down-counting direction change Callback.
121 By default, after the Init and when the state is HAL_LPTIM_STATE_RESET
122 all interrupt callbacks are set to the corresponding weak functions:
123 examples @ref HAL_LPTIM_TriggerCallback(), @ref HAL_LPTIM_CompareMatchCallback().
126 Exception done for MspInit and MspDeInit functions that are reset to the legacy weak
127 functionalities in the Init/DeInit only when these callbacks are null
128 (not registered beforehand). If not, MspInit or MspDeInit are not null, the Init/DeInit
129 keep and use the user MspInit/MspDeInit callbacks (registered beforehand)
132 Callbacks can be registered/unregistered in HAL_LPTIM_STATE_READY state only.
133 Exception done MspInit/MspDeInit that can be registered/unregistered
134 in HAL_LPTIM_STATE_READY or HAL_LPTIM_STATE_RESET state,
135 thus registered (user) MspInit/DeInit callbacks can be used during the Init/DeInit.
136 In that case first register the MspInit/MspDeInit user callbacks
137 using @ref HAL_LPTIM_RegisterCallback() before calling DeInit or Init function.
140 When The compilation define USE_HAL_LPTIM_REGISTER_CALLBACKS is set to 0 or
141 not defined, the callback registration feature is not available and all callbacks
142 are set to the corresponding weak functions.
145 ******************************************************************************
148 * <h2><center>© Copyright (c) 2017 STMicroelectronics.
149 * All rights reserved.</center></h2>
151 * This software component is licensed by ST under BSD 3-Clause license,
152 * the "License"; You may not use this file except in compliance with the
153 * License. You may obtain a copy of the License at:
154 * opensource.org/licenses/BSD-3-Clause
156 ******************************************************************************
159 /* Includes ------------------------------------------------------------------*/
160 #include "stm32h7xx_hal.h"
162 /** @addtogroup STM32H7xx_HAL_Driver
166 /** @defgroup LPTIM LPTIM
167 * @brief LPTIM HAL module driver.
171 #ifdef HAL_LPTIM_MODULE_ENABLED
173 #if defined (LPTIM1) || defined (LPTIM2) || defined (LPTIM3) || defined (LPTIM4) || defined (LPTIM5)
175 /* Private typedef -----------------------------------------------------------*/
176 /* Private define ------------------------------------------------------------*/
177 /** @addtogroup LPTIM_Private_Constants
180 #define TIMEOUT 1000UL /* Timeout is 1s */
185 /* Private macro -------------------------------------------------------------*/
186 /* Private variables ---------------------------------------------------------*/
187 /* Private function prototypes -----------------------------------------------*/
188 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
189 static void LPTIM_ResetCallback(LPTIM_HandleTypeDef
*lptim
);
190 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
191 static HAL_StatusTypeDef
LPTIM_WaitForFlag(LPTIM_HandleTypeDef
*hlptim
, uint32_t flag
);
193 /* Exported functions --------------------------------------------------------*/
195 /** @defgroup LPTIM_Exported_Functions LPTIM Exported Functions
199 /** @defgroup LPTIM_Exported_Functions_Group1 Initialization/de-initialization functions
200 * @brief Initialization and Configuration functions.
203 ==============================================================================
204 ##### Initialization and de-initialization functions #####
205 ==============================================================================
206 [..] This section provides functions allowing to:
207 (+) Initialize the LPTIM according to the specified parameters in the
208 LPTIM_InitTypeDef and initialize the associated handle.
209 (+) DeInitialize the LPTIM peripheral.
210 (+) Initialize the LPTIM MSP.
211 (+) DeInitialize the LPTIM MSP.
218 * @brief Initialize the LPTIM according to the specified parameters in the
219 * LPTIM_InitTypeDef and initialize the associated handle.
220 * @param hlptim LPTIM handle
223 HAL_StatusTypeDef
HAL_LPTIM_Init(LPTIM_HandleTypeDef
*hlptim
)
227 /* Check the LPTIM handle allocation */
233 /* Check the parameters */
234 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
236 assert_param(IS_LPTIM_CLOCK_SOURCE(hlptim
->Init
.Clock
.Source
));
237 assert_param(IS_LPTIM_CLOCK_PRESCALER(hlptim
->Init
.Clock
.Prescaler
));
238 if (hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_ULPTIM
)
240 assert_param(IS_LPTIM_CLOCK_POLARITY(hlptim
->Init
.UltraLowPowerClock
.Polarity
));
242 assert_param(IS_LPTIM_TRG_SOURCE(hlptim
->Init
.Trigger
.Source
));
243 if (hlptim
->Init
.Trigger
.Source
!= LPTIM_TRIGSOURCE_SOFTWARE
)
245 assert_param(IS_LPTIM_EXT_TRG_POLARITY(hlptim
->Init
.Trigger
.ActiveEdge
));
247 if (hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_APBCLOCK_LPOSC
)
249 assert_param(IS_LPTIM_TRIG_SAMPLE_TIME(hlptim
->Init
.Trigger
.SampleTime
));
250 assert_param(IS_LPTIM_CLOCK_SAMPLE_TIME(hlptim
->Init
.UltraLowPowerClock
.SampleTime
));
252 assert_param(IS_LPTIM_OUTPUT_POLARITY(hlptim
->Init
.OutputPolarity
));
253 assert_param(IS_LPTIM_UPDATE_MODE(hlptim
->Init
.UpdateMode
));
254 assert_param(IS_LPTIM_COUNTER_SOURCE(hlptim
->Init
.CounterSource
));
256 if (hlptim
->State
== HAL_LPTIM_STATE_RESET
)
258 /* Allocate lock resource and initialize it */
259 hlptim
->Lock
= HAL_UNLOCKED
;
261 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
262 /* Reset interrupt callbacks to legacy weak callbacks */
263 LPTIM_ResetCallback(hlptim
);
265 if (hlptim
->MspInitCallback
== NULL
)
267 hlptim
->MspInitCallback
= HAL_LPTIM_MspInit
;
270 /* Init the low level hardware : GPIO, CLOCK, NVIC */
271 hlptim
->MspInitCallback(hlptim
);
273 /* Init the low level hardware : GPIO, CLOCK, NVIC */
274 HAL_LPTIM_MspInit(hlptim
);
275 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
278 /* Change the LPTIM state */
279 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
281 /* Get the LPTIMx CFGR value */
282 tmpcfgr
= hlptim
->Instance
->CFGR
;
284 if (hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_ULPTIM
)
286 tmpcfgr
&= (uint32_t)(~(LPTIM_CFGR_CKPOL
));
288 if (hlptim
->Init
.Trigger
.Source
!= LPTIM_TRIGSOURCE_SOFTWARE
)
290 tmpcfgr
&= (uint32_t)(~(LPTIM_CFGR_TRIGSEL
));
292 if (hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_APBCLOCK_LPOSC
)
294 tmpcfgr
&= (uint32_t)(~(LPTIM_CFGR_TRGFLT
| LPTIM_CFGR_CKFLT
));
297 /* Clear CKSEL, CKPOL, PRESC, TRIGEN, TRGFLT, WAVPOL, PRELOAD & COUNTMODE bits */
298 tmpcfgr
&= (uint32_t)(~(LPTIM_CFGR_CKSEL
| LPTIM_CFGR_CKPOL
| LPTIM_CFGR_TRIGEN
| LPTIM_CFGR_PRELOAD
|
299 LPTIM_CFGR_WAVPOL
| LPTIM_CFGR_PRESC
| LPTIM_CFGR_COUNTMODE
));
301 /* Set initialization parameters */
302 tmpcfgr
|= (hlptim
->Init
.Clock
.Source
|
303 hlptim
->Init
.Clock
.Prescaler
|
304 hlptim
->Init
.OutputPolarity
|
305 hlptim
->Init
.UpdateMode
|
306 hlptim
->Init
.CounterSource
);
308 /* Glitch filters for internal triggers and external inputs are configured
309 * only if an internal clock source is provided to the LPTIM
311 if (hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_APBCLOCK_LPOSC
)
313 tmpcfgr
|= (hlptim
->Init
.Trigger
.SampleTime
|
314 hlptim
->Init
.UltraLowPowerClock
.SampleTime
);
317 /* Configure the active edge or edges used by the counter only if LPTIM is
318 * clocked by an external clock source
320 if (hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_ULPTIM
)
322 tmpcfgr
|= (hlptim
->Init
.UltraLowPowerClock
.Polarity
);
325 if (hlptim
->Init
.Trigger
.Source
!= LPTIM_TRIGSOURCE_SOFTWARE
)
327 /* Enable External trigger and set the trigger source */
328 tmpcfgr
|= (hlptim
->Init
.Trigger
.Source
|
329 hlptim
->Init
.Trigger
.ActiveEdge
);
332 /* Write to LPTIMx CFGR */
333 hlptim
->Instance
->CFGR
= tmpcfgr
;
335 /* Configure LPTIM input sources */
336 if ((hlptim
->Instance
== LPTIM1
) || (hlptim
->Instance
== LPTIM2
))
338 /* Check LPTIM Input1 and Input2 sources */
339 assert_param(IS_LPTIM_INPUT1_SOURCE(hlptim
->Instance
, hlptim
->Init
.Input1Source
));
340 assert_param(IS_LPTIM_INPUT2_SOURCE(hlptim
->Instance
, hlptim
->Init
.Input2Source
));
342 /* Configure LPTIM Input1 and Input2 sources */
343 hlptim
->Instance
->CFGR2
= (hlptim
->Init
.Input1Source
| hlptim
->Init
.Input2Source
);
347 if (hlptim
->Instance
== LPTIM3
)
349 /* Check LPTIM3 Input1 source */
350 assert_param(IS_LPTIM_INPUT1_SOURCE(hlptim
->Instance
, hlptim
->Init
.Input1Source
));
352 /* Configure LPTIM3 Input1 source */
353 hlptim
->Instance
->CFGR2
= hlptim
->Init
.Input1Source
;
357 /* Change the LPTIM state */
358 hlptim
->State
= HAL_LPTIM_STATE_READY
;
360 /* Return function status */
365 * @brief DeInitialize the LPTIM peripheral.
366 * @param hlptim LPTIM handle
369 HAL_StatusTypeDef
HAL_LPTIM_DeInit(LPTIM_HandleTypeDef
*hlptim
)
371 /* Check the LPTIM handle allocation */
377 /* Change the LPTIM state */
378 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
380 /* Disable the LPTIM Peripheral Clock */
381 __HAL_LPTIM_DISABLE(hlptim
);
383 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
388 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
389 if (hlptim
->MspDeInitCallback
== NULL
)
391 hlptim
->MspDeInitCallback
= HAL_LPTIM_MspDeInit
;
394 /* DeInit the low level hardware: CLOCK, NVIC.*/
395 hlptim
->MspDeInitCallback(hlptim
);
397 /* DeInit the low level hardware: CLOCK, NVIC.*/
398 HAL_LPTIM_MspDeInit(hlptim
);
399 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
401 /* Change the LPTIM state */
402 hlptim
->State
= HAL_LPTIM_STATE_RESET
;
405 __HAL_UNLOCK(hlptim
);
407 /* Return function status */
412 * @brief Initialize the LPTIM MSP.
413 * @param hlptim LPTIM handle
416 __weak
void HAL_LPTIM_MspInit(LPTIM_HandleTypeDef
*hlptim
)
418 /* Prevent unused argument(s) compilation warning */
421 /* NOTE : This function should not be modified, when the callback is needed,
422 the HAL_LPTIM_MspInit could be implemented in the user file
427 * @brief DeInitialize LPTIM MSP.
428 * @param hlptim LPTIM handle
431 __weak
void HAL_LPTIM_MspDeInit(LPTIM_HandleTypeDef
*hlptim
)
433 /* Prevent unused argument(s) compilation warning */
436 /* NOTE : This function should not be modified, when the callback is needed,
437 the HAL_LPTIM_MspDeInit could be implemented in the user file
445 /** @defgroup LPTIM_Exported_Functions_Group2 LPTIM Start-Stop operation functions
446 * @brief Start-Stop operation functions.
449 ==============================================================================
450 ##### LPTIM Start Stop operation functions #####
451 ==============================================================================
452 [..] This section provides functions allowing to:
453 (+) Start the PWM mode.
454 (+) Stop the PWM mode.
455 (+) Start the One pulse mode.
456 (+) Stop the One pulse mode.
457 (+) Start the Set once mode.
458 (+) Stop the Set once mode.
459 (+) Start the Encoder mode.
460 (+) Stop the Encoder mode.
461 (+) Start the Timeout mode.
462 (+) Stop the Timeout mode.
463 (+) Start the Counter mode.
464 (+) Stop the Counter mode.
472 * @brief Start the LPTIM PWM generation.
473 * @param hlptim LPTIM handle
474 * @param Period Specifies the Autoreload value.
475 * This parameter must be a value between 0x0000 and 0xFFFF.
476 * @param Pulse Specifies the compare value.
477 * This parameter must be a value between 0x0000 and 0xFFFF.
480 HAL_StatusTypeDef
HAL_LPTIM_PWM_Start(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Pulse
)
482 /* Check the parameters */
483 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
484 assert_param(IS_LPTIM_PERIOD(Period
));
485 assert_param(IS_LPTIM_PULSE(Pulse
));
487 /* Set the LPTIM state */
488 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
490 /* Reset WAVE bit to set PWM mode */
491 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_WAVE
;
493 /* Enable the Peripheral */
494 __HAL_LPTIM_ENABLE(hlptim
);
497 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
499 /* Load the period value in the autoreload register */
500 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
502 /* Wait for the completion of the write operation to the LPTIM_ARR register */
503 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
509 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
511 /* Load the pulse value in the compare register */
512 __HAL_LPTIM_COMPARE_SET(hlptim
, Pulse
);
514 /* Wait for the completion of the write operation to the LPTIM_CMP register */
515 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
520 /* Start timer in continuous mode */
521 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
523 /* Change the TIM state*/
524 hlptim
->State
= HAL_LPTIM_STATE_READY
;
526 /* Return function status */
531 * @brief Stop the LPTIM PWM generation.
532 * @param hlptim LPTIM handle
535 HAL_StatusTypeDef
HAL_LPTIM_PWM_Stop(LPTIM_HandleTypeDef
*hlptim
)
537 /* Check the parameters */
538 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
540 /* Set the LPTIM state */
541 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
543 /* Disable the Peripheral */
544 __HAL_LPTIM_DISABLE(hlptim
);
546 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
551 /* Change the TIM state*/
552 hlptim
->State
= HAL_LPTIM_STATE_READY
;
554 /* Return function status */
559 * @brief Start the LPTIM PWM generation in interrupt mode.
560 * @param hlptim LPTIM handle
561 * @param Period Specifies the Autoreload value.
562 * This parameter must be a value between 0x0000 and 0xFFFF
563 * @param Pulse Specifies the compare value.
564 * This parameter must be a value between 0x0000 and 0xFFFF
567 HAL_StatusTypeDef
HAL_LPTIM_PWM_Start_IT(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Pulse
)
569 /* Check the parameters */
570 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
571 assert_param(IS_LPTIM_PERIOD(Period
));
572 assert_param(IS_LPTIM_PULSE(Pulse
));
574 /* Set the LPTIM state */
575 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
577 /* Reset WAVE bit to set PWM mode */
578 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_WAVE
;
580 /* Enable the Peripheral */
581 __HAL_LPTIM_ENABLE(hlptim
);
584 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
586 /* Load the period value in the autoreload register */
587 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
589 /* Wait for the completion of the write operation to the LPTIM_ARR register */
590 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
596 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
598 /* Load the pulse value in the compare register */
599 __HAL_LPTIM_COMPARE_SET(hlptim
, Pulse
);
601 /* Wait for the completion of the write operation to the LPTIM_CMP register */
602 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
607 /* Disable the Peripheral */
608 __HAL_LPTIM_DISABLE(hlptim
);
610 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
615 /* Enable Autoreload write complete interrupt */
616 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARROK
);
618 /* Enable Compare write complete interrupt */
619 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPOK
);
621 /* Enable Autoreload match interrupt */
622 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARRM
);
624 /* Enable Compare match interrupt */
625 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPM
);
627 /* If external trigger source is used, then enable external trigger interrupt */
628 if ((hlptim
->Init
.Trigger
.Source
) != LPTIM_TRIGSOURCE_SOFTWARE
)
630 /* Enable external trigger interrupt */
631 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_EXTTRIG
);
634 /* Enable the Peripheral */
635 __HAL_LPTIM_ENABLE(hlptim
);
637 /* Start timer in continuous mode */
638 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
640 /* Change the TIM state*/
641 hlptim
->State
= HAL_LPTIM_STATE_READY
;
643 /* Return function status */
648 * @brief Stop the LPTIM PWM generation in interrupt mode.
649 * @param hlptim LPTIM handle
652 HAL_StatusTypeDef
HAL_LPTIM_PWM_Stop_IT(LPTIM_HandleTypeDef
*hlptim
)
654 /* Check the parameters */
655 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
657 /* Set the LPTIM state */
658 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
660 /* Disable the Peripheral */
661 __HAL_LPTIM_DISABLE(hlptim
);
663 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
668 /* Disable Autoreload write complete interrupt */
669 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARROK
);
671 /* Disable Compare write complete interrupt */
672 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPOK
);
674 /* Disable Autoreload match interrupt */
675 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARRM
);
677 /* Disable Compare match interrupt */
678 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPM
);
680 /* If external trigger source is used, then disable external trigger interrupt */
681 if ((hlptim
->Init
.Trigger
.Source
) != LPTIM_TRIGSOURCE_SOFTWARE
)
683 /* Disable external trigger interrupt */
684 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_EXTTRIG
);
687 /* Change the TIM state*/
688 hlptim
->State
= HAL_LPTIM_STATE_READY
;
690 /* Return function status */
695 * @brief Start the LPTIM One pulse generation.
696 * @param hlptim LPTIM handle
697 * @param Period Specifies the Autoreload value.
698 * This parameter must be a value between 0x0000 and 0xFFFF.
699 * @param Pulse Specifies the compare value.
700 * This parameter must be a value between 0x0000 and 0xFFFF.
703 HAL_StatusTypeDef
HAL_LPTIM_OnePulse_Start(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Pulse
)
705 /* Check the parameters */
706 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
707 assert_param(IS_LPTIM_PERIOD(Period
));
708 assert_param(IS_LPTIM_PULSE(Pulse
));
710 /* Set the LPTIM state */
711 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
713 /* Reset WAVE bit to set one pulse mode */
714 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_WAVE
;
716 /* Enable the Peripheral */
717 __HAL_LPTIM_ENABLE(hlptim
);
720 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
722 /* Load the period value in the autoreload register */
723 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
725 /* Wait for the completion of the write operation to the LPTIM_ARR register */
726 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
732 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
734 /* Load the pulse value in the compare register */
735 __HAL_LPTIM_COMPARE_SET(hlptim
, Pulse
);
737 /* Wait for the completion of the write operation to the LPTIM_CMP register */
738 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
743 /* Start timer in single (one shot) mode */
744 __HAL_LPTIM_START_SINGLE(hlptim
);
746 /* Change the TIM state*/
747 hlptim
->State
= HAL_LPTIM_STATE_READY
;
749 /* Return function status */
754 * @brief Stop the LPTIM One pulse generation.
755 * @param hlptim LPTIM handle
758 HAL_StatusTypeDef
HAL_LPTIM_OnePulse_Stop(LPTIM_HandleTypeDef
*hlptim
)
760 /* Check the parameters */
761 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
763 /* Set the LPTIM state */
764 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
766 /* Disable the Peripheral */
767 __HAL_LPTIM_DISABLE(hlptim
);
769 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
774 /* Change the TIM state*/
775 hlptim
->State
= HAL_LPTIM_STATE_READY
;
777 /* Return function status */
782 * @brief Start the LPTIM One pulse generation in interrupt mode.
783 * @param hlptim LPTIM handle
784 * @param Period Specifies the Autoreload value.
785 * This parameter must be a value between 0x0000 and 0xFFFF.
786 * @param Pulse Specifies the compare value.
787 * This parameter must be a value between 0x0000 and 0xFFFF.
790 HAL_StatusTypeDef
HAL_LPTIM_OnePulse_Start_IT(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Pulse
)
792 /* Check the parameters */
793 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
794 assert_param(IS_LPTIM_PERIOD(Period
));
795 assert_param(IS_LPTIM_PULSE(Pulse
));
797 /* Set the LPTIM state */
798 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
800 /* Reset WAVE bit to set one pulse mode */
801 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_WAVE
;
803 /* Enable the Peripheral */
804 __HAL_LPTIM_ENABLE(hlptim
);
807 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
809 /* Load the period value in the autoreload register */
810 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
812 /* Wait for the completion of the write operation to the LPTIM_ARR register */
813 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
819 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
821 /* Load the pulse value in the compare register */
822 __HAL_LPTIM_COMPARE_SET(hlptim
, Pulse
);
824 /* Wait for the completion of the write operation to the LPTIM_CMP register */
825 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
830 /* Disable the Peripheral */
831 __HAL_LPTIM_DISABLE(hlptim
);
833 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
838 /* Enable Autoreload write complete interrupt */
839 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARROK
);
841 /* Enable Compare write complete interrupt */
842 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPOK
);
844 /* Enable Autoreload match interrupt */
845 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARRM
);
847 /* Enable Compare match interrupt */
848 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPM
);
850 /* If external trigger source is used, then enable external trigger interrupt */
851 if ((hlptim
->Init
.Trigger
.Source
) != LPTIM_TRIGSOURCE_SOFTWARE
)
853 /* Enable external trigger interrupt */
854 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_EXTTRIG
);
857 /* Enable the Peripheral */
858 __HAL_LPTIM_ENABLE(hlptim
);
860 /* Start timer in single (one shot) mode */
861 __HAL_LPTIM_START_SINGLE(hlptim
);
863 /* Change the TIM state*/
864 hlptim
->State
= HAL_LPTIM_STATE_READY
;
866 /* Return function status */
871 * @brief Stop the LPTIM One pulse generation in interrupt mode.
872 * @param hlptim LPTIM handle
875 HAL_StatusTypeDef
HAL_LPTIM_OnePulse_Stop_IT(LPTIM_HandleTypeDef
*hlptim
)
877 /* Check the parameters */
878 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
880 /* Set the LPTIM state */
881 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
883 /* Disable the Peripheral */
884 __HAL_LPTIM_DISABLE(hlptim
);
886 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
891 /* Disable Autoreload write complete interrupt */
892 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARROK
);
894 /* Disable Compare write complete interrupt */
895 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPOK
);
897 /* Disable Autoreload match interrupt */
898 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARRM
);
900 /* Disable Compare match interrupt */
901 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPM
);
903 /* If external trigger source is used, then disable external trigger interrupt */
904 if ((hlptim
->Init
.Trigger
.Source
) != LPTIM_TRIGSOURCE_SOFTWARE
)
906 /* Disable external trigger interrupt */
907 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_EXTTRIG
);
910 /* Change the TIM state*/
911 hlptim
->State
= HAL_LPTIM_STATE_READY
;
913 /* Return function status */
918 * @brief Start the LPTIM in Set once mode.
919 * @param hlptim LPTIM handle
920 * @param Period Specifies the Autoreload value.
921 * This parameter must be a value between 0x0000 and 0xFFFF.
922 * @param Pulse Specifies the compare value.
923 * This parameter must be a value between 0x0000 and 0xFFFF.
926 HAL_StatusTypeDef
HAL_LPTIM_SetOnce_Start(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Pulse
)
928 /* Check the parameters */
929 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
930 assert_param(IS_LPTIM_PERIOD(Period
));
931 assert_param(IS_LPTIM_PULSE(Pulse
));
933 /* Set the LPTIM state */
934 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
936 /* Set WAVE bit to enable the set once mode */
937 hlptim
->Instance
->CFGR
|= LPTIM_CFGR_WAVE
;
939 /* Enable the Peripheral */
940 __HAL_LPTIM_ENABLE(hlptim
);
943 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
945 /* Load the period value in the autoreload register */
946 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
948 /* Wait for the completion of the write operation to the LPTIM_ARR register */
949 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
955 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
957 /* Load the pulse value in the compare register */
958 __HAL_LPTIM_COMPARE_SET(hlptim
, Pulse
);
960 /* Wait for the completion of the write operation to the LPTIM_CMP register */
961 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
966 /* Start timer in single (one shot) mode */
967 __HAL_LPTIM_START_SINGLE(hlptim
);
969 /* Change the TIM state*/
970 hlptim
->State
= HAL_LPTIM_STATE_READY
;
972 /* Return function status */
977 * @brief Stop the LPTIM Set once mode.
978 * @param hlptim LPTIM handle
981 HAL_StatusTypeDef
HAL_LPTIM_SetOnce_Stop(LPTIM_HandleTypeDef
*hlptim
)
983 /* Check the parameters */
984 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
986 /* Set the LPTIM state */
987 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
989 /* Disable the Peripheral */
990 __HAL_LPTIM_DISABLE(hlptim
);
992 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
997 /* Change the TIM state*/
998 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1000 /* Return function status */
1005 * @brief Start the LPTIM Set once mode in interrupt mode.
1006 * @param hlptim LPTIM handle
1007 * @param Period Specifies the Autoreload value.
1008 * This parameter must be a value between 0x0000 and 0xFFFF.
1009 * @param Pulse Specifies the compare value.
1010 * This parameter must be a value between 0x0000 and 0xFFFF.
1011 * @retval HAL status
1013 HAL_StatusTypeDef
HAL_LPTIM_SetOnce_Start_IT(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Pulse
)
1015 /* Check the parameters */
1016 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1017 assert_param(IS_LPTIM_PERIOD(Period
));
1018 assert_param(IS_LPTIM_PULSE(Pulse
));
1020 /* Set the LPTIM state */
1021 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1023 /* Set WAVE bit to enable the set once mode */
1024 hlptim
->Instance
->CFGR
|= LPTIM_CFGR_WAVE
;
1026 /* Enable the Peripheral */
1027 __HAL_LPTIM_ENABLE(hlptim
);
1030 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1032 /* Load the period value in the autoreload register */
1033 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1035 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1036 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1042 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
1044 /* Load the pulse value in the compare register */
1045 __HAL_LPTIM_COMPARE_SET(hlptim
, Pulse
);
1047 /* Wait for the completion of the write operation to the LPTIM_CMP register */
1048 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
1053 /* Disable the Peripheral */
1054 __HAL_LPTIM_DISABLE(hlptim
);
1056 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1061 /* Enable Autoreload write complete interrupt */
1062 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARROK
);
1064 /* Enable Compare write complete interrupt */
1065 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPOK
);
1067 /* Enable Autoreload match interrupt */
1068 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARRM
);
1070 /* Enable Compare match interrupt */
1071 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPM
);
1073 /* If external trigger source is used, then enable external trigger interrupt */
1074 if ((hlptim
->Init
.Trigger
.Source
) != LPTIM_TRIGSOURCE_SOFTWARE
)
1076 /* Enable external trigger interrupt */
1077 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_EXTTRIG
);
1080 /* Enable the Peripheral */
1081 __HAL_LPTIM_ENABLE(hlptim
);
1083 /* Start timer in single (one shot) mode */
1084 __HAL_LPTIM_START_SINGLE(hlptim
);
1086 /* Change the TIM state*/
1087 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1089 /* Return function status */
1094 * @brief Stop the LPTIM Set once mode in interrupt mode.
1095 * @param hlptim LPTIM handle
1096 * @retval HAL status
1098 HAL_StatusTypeDef
HAL_LPTIM_SetOnce_Stop_IT(LPTIM_HandleTypeDef
*hlptim
)
1100 /* Check the parameters */
1101 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1103 /* Set the LPTIM state */
1104 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1106 /* Disable the Peripheral */
1107 __HAL_LPTIM_DISABLE(hlptim
);
1109 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1114 /* Disable Autoreload write complete interrupt */
1115 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARROK
);
1117 /* Disable Compare write complete interrupt */
1118 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPOK
);
1120 /* Disable Autoreload match interrupt */
1121 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARRM
);
1123 /* Disable Compare match interrupt */
1124 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPM
);
1126 /* If external trigger source is used, then disable external trigger interrupt */
1127 if ((hlptim
->Init
.Trigger
.Source
) != LPTIM_TRIGSOURCE_SOFTWARE
)
1129 /* Disable external trigger interrupt */
1130 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_EXTTRIG
);
1133 /* Change the TIM state*/
1134 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1136 /* Return function status */
1141 * @brief Start the Encoder interface.
1142 * @param hlptim LPTIM handle
1143 * @param Period Specifies the Autoreload value.
1144 * This parameter must be a value between 0x0000 and 0xFFFF.
1145 * @retval HAL status
1147 HAL_StatusTypeDef
HAL_LPTIM_Encoder_Start(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
)
1151 /* Check the parameters */
1152 assert_param(IS_LPTIM_ENCODER_INTERFACE_INSTANCE(hlptim
->Instance
));
1153 assert_param(IS_LPTIM_PERIOD(Period
));
1154 assert_param(hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_APBCLOCK_LPOSC
);
1155 assert_param(hlptim
->Init
.Clock
.Prescaler
== LPTIM_PRESCALER_DIV1
);
1156 assert_param(IS_LPTIM_CLOCK_POLARITY(hlptim
->Init
.UltraLowPowerClock
.Polarity
));
1158 /* Set the LPTIM state */
1159 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1161 /* Get the LPTIMx CFGR value */
1162 tmpcfgr
= hlptim
->Instance
->CFGR
;
1164 /* Clear CKPOL bits */
1165 tmpcfgr
&= (uint32_t)(~LPTIM_CFGR_CKPOL
);
1167 /* Set Input polarity */
1168 tmpcfgr
|= hlptim
->Init
.UltraLowPowerClock
.Polarity
;
1170 /* Write to LPTIMx CFGR */
1171 hlptim
->Instance
->CFGR
= tmpcfgr
;
1173 /* Set ENC bit to enable the encoder interface */
1174 hlptim
->Instance
->CFGR
|= LPTIM_CFGR_ENC
;
1176 /* Enable the Peripheral */
1177 __HAL_LPTIM_ENABLE(hlptim
);
1180 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1182 /* Load the period value in the autoreload register */
1183 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1185 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1186 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1191 /* Start timer in continuous mode */
1192 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
1194 /* Change the TIM state*/
1195 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1197 /* Return function status */
1202 * @brief Stop the Encoder interface.
1203 * @param hlptim LPTIM handle
1204 * @retval HAL status
1206 HAL_StatusTypeDef
HAL_LPTIM_Encoder_Stop(LPTIM_HandleTypeDef
*hlptim
)
1208 /* Check the parameters */
1209 assert_param(IS_LPTIM_ENCODER_INTERFACE_INSTANCE(hlptim
->Instance
));
1211 /* Set the LPTIM state */
1212 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1214 /* Disable the Peripheral */
1215 __HAL_LPTIM_DISABLE(hlptim
);
1217 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1222 /* Reset ENC bit to disable the encoder interface */
1223 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_ENC
;
1225 /* Change the TIM state*/
1226 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1228 /* Return function status */
1233 * @brief Start the Encoder interface in interrupt mode.
1234 * @param hlptim LPTIM handle
1235 * @param Period Specifies the Autoreload value.
1236 * This parameter must be a value between 0x0000 and 0xFFFF.
1237 * @retval HAL status
1239 HAL_StatusTypeDef
HAL_LPTIM_Encoder_Start_IT(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
)
1243 /* Check the parameters */
1244 assert_param(IS_LPTIM_ENCODER_INTERFACE_INSTANCE(hlptim
->Instance
));
1245 assert_param(IS_LPTIM_PERIOD(Period
));
1246 assert_param(hlptim
->Init
.Clock
.Source
== LPTIM_CLOCKSOURCE_APBCLOCK_LPOSC
);
1247 assert_param(hlptim
->Init
.Clock
.Prescaler
== LPTIM_PRESCALER_DIV1
);
1248 assert_param(IS_LPTIM_CLOCK_POLARITY(hlptim
->Init
.UltraLowPowerClock
.Polarity
));
1250 /* Set the LPTIM state */
1251 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1253 /* Configure edge sensitivity for encoder mode */
1254 /* Get the LPTIMx CFGR value */
1255 tmpcfgr
= hlptim
->Instance
->CFGR
;
1257 /* Clear CKPOL bits */
1258 tmpcfgr
&= (uint32_t)(~LPTIM_CFGR_CKPOL
);
1260 /* Set Input polarity */
1261 tmpcfgr
|= hlptim
->Init
.UltraLowPowerClock
.Polarity
;
1263 /* Write to LPTIMx CFGR */
1264 hlptim
->Instance
->CFGR
= tmpcfgr
;
1266 /* Set ENC bit to enable the encoder interface */
1267 hlptim
->Instance
->CFGR
|= LPTIM_CFGR_ENC
;
1269 /* Enable the Peripheral */
1270 __HAL_LPTIM_ENABLE(hlptim
);
1273 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1275 /* Load the period value in the autoreload register */
1276 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1278 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1279 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1284 /* Disable the Peripheral */
1285 __HAL_LPTIM_DISABLE(hlptim
);
1287 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1292 /* Enable "switch to down direction" interrupt */
1293 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_DOWN
);
1295 /* Enable "switch to up direction" interrupt */
1296 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_UP
);
1298 /* Enable the Peripheral */
1299 __HAL_LPTIM_ENABLE(hlptim
);
1301 /* Start timer in continuous mode */
1302 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
1304 /* Change the TIM state*/
1305 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1307 /* Return function status */
1312 * @brief Stop the Encoder interface in interrupt mode.
1313 * @param hlptim LPTIM handle
1314 * @retval HAL status
1316 HAL_StatusTypeDef
HAL_LPTIM_Encoder_Stop_IT(LPTIM_HandleTypeDef
*hlptim
)
1318 /* Check the parameters */
1319 assert_param(IS_LPTIM_ENCODER_INTERFACE_INSTANCE(hlptim
->Instance
));
1321 /* Set the LPTIM state */
1322 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1324 /* Disable the Peripheral */
1325 __HAL_LPTIM_DISABLE(hlptim
);
1327 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1332 /* Reset ENC bit to disable the encoder interface */
1333 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_ENC
;
1335 /* Disable "switch to down direction" interrupt */
1336 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_DOWN
);
1338 /* Disable "switch to up direction" interrupt */
1339 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_UP
);
1341 /* Change the TIM state*/
1342 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1344 /* Return function status */
1349 * @brief Start the Timeout function.
1350 * @note The first trigger event will start the timer, any successive
1351 * trigger event will reset the counter and the timer restarts.
1352 * @param hlptim LPTIM handle
1353 * @param Period Specifies the Autoreload value.
1354 * This parameter must be a value between 0x0000 and 0xFFFF.
1355 * @param Timeout Specifies the TimeOut value to reset the counter.
1356 * This parameter must be a value between 0x0000 and 0xFFFF.
1357 * @retval HAL status
1359 HAL_StatusTypeDef
HAL_LPTIM_TimeOut_Start(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Timeout
)
1361 /* Check the parameters */
1362 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1363 assert_param(IS_LPTIM_PERIOD(Period
));
1364 assert_param(IS_LPTIM_PULSE(Timeout
));
1366 /* Set the LPTIM state */
1367 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1369 /* Set TIMOUT bit to enable the timeout function */
1370 hlptim
->Instance
->CFGR
|= LPTIM_CFGR_TIMOUT
;
1372 /* Enable the Peripheral */
1373 __HAL_LPTIM_ENABLE(hlptim
);
1376 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1378 /* Load the period value in the autoreload register */
1379 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1381 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1382 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1388 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
1390 /* Load the Timeout value in the compare register */
1391 __HAL_LPTIM_COMPARE_SET(hlptim
, Timeout
);
1393 /* Wait for the completion of the write operation to the LPTIM_CMP register */
1394 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
1399 /* Start timer in continuous mode */
1400 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
1402 /* Change the TIM state*/
1403 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1405 /* Return function status */
1410 * @brief Stop the Timeout function.
1411 * @param hlptim LPTIM handle
1412 * @retval HAL status
1414 HAL_StatusTypeDef
HAL_LPTIM_TimeOut_Stop(LPTIM_HandleTypeDef
*hlptim
)
1416 /* Check the parameters */
1417 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1419 /* Set the LPTIM state */
1420 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1422 /* Disable the Peripheral */
1423 __HAL_LPTIM_DISABLE(hlptim
);
1425 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1430 /* Reset TIMOUT bit to enable the timeout function */
1431 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_TIMOUT
;
1433 /* Change the TIM state*/
1434 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1436 /* Return function status */
1441 * @brief Start the Timeout function in interrupt mode.
1442 * @note The first trigger event will start the timer, any successive
1443 * trigger event will reset the counter and the timer restarts.
1444 * @param hlptim LPTIM handle
1445 * @param Period Specifies the Autoreload value.
1446 * This parameter must be a value between 0x0000 and 0xFFFF.
1447 * @param Timeout Specifies the TimeOut value to reset the counter.
1448 * This parameter must be a value between 0x0000 and 0xFFFF.
1449 * @retval HAL status
1451 HAL_StatusTypeDef
HAL_LPTIM_TimeOut_Start_IT(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
, uint32_t Timeout
)
1453 /* Check the parameters */
1454 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1455 assert_param(IS_LPTIM_PERIOD(Period
));
1456 assert_param(IS_LPTIM_PULSE(Timeout
));
1458 /* Set the LPTIM state */
1459 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1461 /* Set TIMOUT bit to enable the timeout function */
1462 hlptim
->Instance
->CFGR
|= LPTIM_CFGR_TIMOUT
;
1464 /* Enable the Peripheral */
1465 __HAL_LPTIM_ENABLE(hlptim
);
1468 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1470 /* Load the period value in the autoreload register */
1471 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1473 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1474 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1480 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
1482 /* Load the Timeout value in the compare register */
1483 __HAL_LPTIM_COMPARE_SET(hlptim
, Timeout
);
1485 /* Wait for the completion of the write operation to the LPTIM_CMP register */
1486 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
1491 /* Disable the Peripheral */
1492 __HAL_LPTIM_DISABLE(hlptim
);
1494 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1499 /* Enable Compare match interrupt */
1500 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_CMPM
);
1502 /* Enable the Peripheral */
1503 __HAL_LPTIM_ENABLE(hlptim
);
1505 /* Start timer in continuous mode */
1506 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
1508 /* Change the TIM state*/
1509 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1511 /* Return function status */
1516 * @brief Stop the Timeout function in interrupt mode.
1517 * @param hlptim LPTIM handle
1518 * @retval HAL status
1520 HAL_StatusTypeDef
HAL_LPTIM_TimeOut_Stop_IT(LPTIM_HandleTypeDef
*hlptim
)
1522 /* Check the parameters */
1523 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1525 /* Set the LPTIM state */
1526 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1528 /* Disable the Peripheral */
1529 __HAL_LPTIM_DISABLE(hlptim
);
1531 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1536 /* Reset TIMOUT bit to enable the timeout function */
1537 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_TIMOUT
;
1539 /* Disable Compare match interrupt */
1540 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_CMPM
);
1542 /* Change the TIM state*/
1543 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1545 /* Return function status */
1550 * @brief Start the Counter mode.
1551 * @param hlptim LPTIM handle
1552 * @param Period Specifies the Autoreload value.
1553 * This parameter must be a value between 0x0000 and 0xFFFF.
1554 * @retval HAL status
1556 HAL_StatusTypeDef
HAL_LPTIM_Counter_Start(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
)
1558 /* Check the parameters */
1559 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1560 assert_param(IS_LPTIM_PERIOD(Period
));
1562 /* Set the LPTIM state */
1563 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1565 /* If clock source is not ULPTIM clock and counter source is external, then it must not be prescaled */
1566 if ((hlptim
->Init
.Clock
.Source
!= LPTIM_CLOCKSOURCE_ULPTIM
) && (hlptim
->Init
.CounterSource
== LPTIM_COUNTERSOURCE_EXTERNAL
))
1568 /* Check if clock is prescaled */
1569 assert_param(IS_LPTIM_CLOCK_PRESCALERDIV1(hlptim
->Init
.Clock
.Prescaler
));
1570 /* Set clock prescaler to 0 */
1571 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_PRESC
;
1574 /* Enable the Peripheral */
1575 __HAL_LPTIM_ENABLE(hlptim
);
1578 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1580 /* Load the period value in the autoreload register */
1581 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1583 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1584 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1589 /* Start timer in continuous mode */
1590 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
1592 /* Change the TIM state*/
1593 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1595 /* Return function status */
1600 * @brief Stop the Counter mode.
1601 * @param hlptim LPTIM handle
1602 * @retval HAL status
1604 HAL_StatusTypeDef
HAL_LPTIM_Counter_Stop(LPTIM_HandleTypeDef
*hlptim
)
1606 /* Check the parameters */
1607 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1609 /* Set the LPTIM state */
1610 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1612 /* Disable the Peripheral */
1613 __HAL_LPTIM_DISABLE(hlptim
);
1615 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1620 /* Change the TIM state*/
1621 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1623 /* Return function status */
1628 * @brief Start the Counter mode in interrupt mode.
1629 * @param hlptim LPTIM handle
1630 * @param Period Specifies the Autoreload value.
1631 * This parameter must be a value between 0x0000 and 0xFFFF.
1632 * @retval HAL status
1634 HAL_StatusTypeDef
HAL_LPTIM_Counter_Start_IT(LPTIM_HandleTypeDef
*hlptim
, uint32_t Period
)
1636 /* Check the parameters */
1637 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1638 assert_param(IS_LPTIM_PERIOD(Period
));
1640 /* Set the LPTIM state */
1641 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1643 /* If clock source is not ULPTIM clock and counter source is external, then it must not be prescaled */
1644 if ((hlptim
->Init
.Clock
.Source
!= LPTIM_CLOCKSOURCE_ULPTIM
) && (hlptim
->Init
.CounterSource
== LPTIM_COUNTERSOURCE_EXTERNAL
))
1646 /* Check if clock is prescaled */
1647 assert_param(IS_LPTIM_CLOCK_PRESCALERDIV1(hlptim
->Init
.Clock
.Prescaler
));
1648 /* Set clock prescaler to 0 */
1649 hlptim
->Instance
->CFGR
&= ~LPTIM_CFGR_PRESC
;
1652 /* Enable the Peripheral */
1653 __HAL_LPTIM_ENABLE(hlptim
);
1656 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1658 /* Load the period value in the autoreload register */
1659 __HAL_LPTIM_AUTORELOAD_SET(hlptim
, Period
);
1661 /* Wait for the completion of the write operation to the LPTIM_ARR register */
1662 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
1667 /* Disable the Peripheral */
1668 __HAL_LPTIM_DISABLE(hlptim
);
1670 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1675 /* Enable Autoreload write complete interrupt */
1676 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARROK
);
1678 /* Enable Autoreload match interrupt */
1679 __HAL_LPTIM_ENABLE_IT(hlptim
, LPTIM_IT_ARRM
);
1681 /* Enable the Peripheral */
1682 __HAL_LPTIM_ENABLE(hlptim
);
1684 /* Start timer in continuous mode */
1685 __HAL_LPTIM_START_CONTINUOUS(hlptim
);
1687 /* Change the TIM state*/
1688 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1690 /* Return function status */
1695 * @brief Stop the Counter mode in interrupt mode.
1696 * @param hlptim LPTIM handle
1697 * @retval HAL status
1699 HAL_StatusTypeDef
HAL_LPTIM_Counter_Stop_IT(LPTIM_HandleTypeDef
*hlptim
)
1701 /* Check the parameters */
1702 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1704 /* Set the LPTIM state */
1705 hlptim
->State
= HAL_LPTIM_STATE_BUSY
;
1707 /* Disable the Peripheral */
1708 __HAL_LPTIM_DISABLE(hlptim
);
1710 if (HAL_LPTIM_GetState(hlptim
) == HAL_LPTIM_STATE_TIMEOUT
)
1715 /* Disable Autoreload write complete interrupt */
1716 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARROK
);
1718 /* Disable Autoreload match interrupt */
1719 __HAL_LPTIM_DISABLE_IT(hlptim
, LPTIM_IT_ARRM
);
1720 /* Change the TIM state*/
1721 hlptim
->State
= HAL_LPTIM_STATE_READY
;
1723 /* Return function status */
1731 /** @defgroup LPTIM_Exported_Functions_Group3 LPTIM Read operation functions
1732 * @brief Read operation functions.
1735 ==============================================================================
1736 ##### LPTIM Read operation functions #####
1737 ==============================================================================
1738 [..] This section provides LPTIM Reading functions.
1739 (+) Read the counter value.
1740 (+) Read the period (Auto-reload) value.
1741 (+) Read the pulse (Compare)value.
1747 * @brief Return the current counter value.
1748 * @param hlptim LPTIM handle
1749 * @retval Counter value.
1751 uint32_t HAL_LPTIM_ReadCounter(LPTIM_HandleTypeDef
*hlptim
)
1753 /* Check the parameters */
1754 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1756 return (hlptim
->Instance
->CNT
);
1760 * @brief Return the current Autoreload (Period) value.
1761 * @param hlptim LPTIM handle
1762 * @retval Autoreload value.
1764 uint32_t HAL_LPTIM_ReadAutoReload(LPTIM_HandleTypeDef
*hlptim
)
1766 /* Check the parameters */
1767 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1769 return (hlptim
->Instance
->ARR
);
1773 * @brief Return the current Compare (Pulse) value.
1774 * @param hlptim LPTIM handle
1775 * @retval Compare value.
1777 uint32_t HAL_LPTIM_ReadCompare(LPTIM_HandleTypeDef
*hlptim
)
1779 /* Check the parameters */
1780 assert_param(IS_LPTIM_INSTANCE(hlptim
->Instance
));
1782 return (hlptim
->Instance
->CMP
);
1789 /** @defgroup LPTIM_Exported_Functions_Group4 LPTIM IRQ handler and callbacks
1790 * @brief LPTIM IRQ handler.
1793 ==============================================================================
1794 ##### LPTIM IRQ handler and callbacks #####
1795 ==============================================================================
1796 [..] This section provides LPTIM IRQ handler and callback functions called within
1798 (+) LPTIM interrupt request handler
1799 (+) Compare match Callback
1800 (+) Auto-reload match Callback
1801 (+) External trigger event detection Callback
1802 (+) Compare register write complete Callback
1803 (+) Auto-reload register write complete Callback
1804 (+) Up-counting direction change Callback
1805 (+) Down-counting direction change Callback
1812 * @brief Handle LPTIM interrupt request.
1813 * @param hlptim LPTIM handle
1816 void HAL_LPTIM_IRQHandler(LPTIM_HandleTypeDef
*hlptim
)
1818 /* Compare match interrupt */
1819 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_CMPM
) != RESET
)
1821 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_CMPM
) != RESET
)
1823 /* Clear Compare match flag */
1824 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPM
);
1826 /* Compare match Callback */
1827 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1828 hlptim
->CompareMatchCallback(hlptim
);
1830 HAL_LPTIM_CompareMatchCallback(hlptim
);
1831 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1835 /* Autoreload match interrupt */
1836 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_ARRM
) != RESET
)
1838 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_ARRM
) != RESET
)
1840 /* Clear Autoreload match flag */
1841 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARRM
);
1843 /* Autoreload match Callback */
1844 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1845 hlptim
->AutoReloadMatchCallback(hlptim
);
1847 HAL_LPTIM_AutoReloadMatchCallback(hlptim
);
1848 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1852 /* Trigger detected interrupt */
1853 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_EXTTRIG
) != RESET
)
1855 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_EXTTRIG
) != RESET
)
1857 /* Clear Trigger detected flag */
1858 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_EXTTRIG
);
1860 /* Trigger detected callback */
1861 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1862 hlptim
->TriggerCallback(hlptim
);
1864 HAL_LPTIM_TriggerCallback(hlptim
);
1865 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1869 /* Compare write interrupt */
1870 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_CMPOK
) != RESET
)
1872 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_CMPOK
) != RESET
)
1874 /* Clear Compare write flag */
1875 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
1877 /* Compare write Callback */
1878 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1879 hlptim
->CompareWriteCallback(hlptim
);
1881 HAL_LPTIM_CompareWriteCallback(hlptim
);
1882 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1886 /* Autoreload write interrupt */
1887 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_ARROK
) != RESET
)
1889 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_ARROK
) != RESET
)
1891 /* Clear Autoreload write flag */
1892 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
1894 /* Autoreload write Callback */
1895 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1896 hlptim
->AutoReloadWriteCallback(hlptim
);
1898 HAL_LPTIM_AutoReloadWriteCallback(hlptim
);
1899 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1903 /* Direction counter changed from Down to Up interrupt */
1904 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_UP
) != RESET
)
1906 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_UP
) != RESET
)
1908 /* Clear Direction counter changed from Down to Up flag */
1909 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_UP
);
1911 /* Direction counter changed from Down to Up Callback */
1912 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1913 hlptim
->DirectionUpCallback(hlptim
);
1915 HAL_LPTIM_DirectionUpCallback(hlptim
);
1916 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1920 /* Direction counter changed from Up to Down interrupt */
1921 if (__HAL_LPTIM_GET_FLAG(hlptim
, LPTIM_FLAG_DOWN
) != RESET
)
1923 if (__HAL_LPTIM_GET_IT_SOURCE(hlptim
, LPTIM_IT_DOWN
) != RESET
)
1925 /* Clear Direction counter changed from Up to Down flag */
1926 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_DOWN
);
1928 /* Direction counter changed from Up to Down Callback */
1929 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
1930 hlptim
->DirectionDownCallback(hlptim
);
1932 HAL_LPTIM_DirectionDownCallback(hlptim
);
1933 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
1939 * @brief Compare match callback in non-blocking mode.
1940 * @param hlptim LPTIM handle
1943 __weak
void HAL_LPTIM_CompareMatchCallback(LPTIM_HandleTypeDef
*hlptim
)
1945 /* Prevent unused argument(s) compilation warning */
1948 /* NOTE : This function should not be modified, when the callback is needed,
1949 the HAL_LPTIM_CompareMatchCallback could be implemented in the user file
1954 * @brief Autoreload match callback in non-blocking mode.
1955 * @param hlptim LPTIM handle
1958 __weak
void HAL_LPTIM_AutoReloadMatchCallback(LPTIM_HandleTypeDef
*hlptim
)
1960 /* Prevent unused argument(s) compilation warning */
1963 /* NOTE : This function should not be modified, when the callback is needed,
1964 the HAL_LPTIM_AutoReloadMatchCallback could be implemented in the user file
1969 * @brief Trigger detected callback in non-blocking mode.
1970 * @param hlptim LPTIM handle
1973 __weak
void HAL_LPTIM_TriggerCallback(LPTIM_HandleTypeDef
*hlptim
)
1975 /* Prevent unused argument(s) compilation warning */
1978 /* NOTE : This function should not be modified, when the callback is needed,
1979 the HAL_LPTIM_TriggerCallback could be implemented in the user file
1984 * @brief Compare write callback in non-blocking mode.
1985 * @param hlptim LPTIM handle
1988 __weak
void HAL_LPTIM_CompareWriteCallback(LPTIM_HandleTypeDef
*hlptim
)
1990 /* Prevent unused argument(s) compilation warning */
1993 /* NOTE : This function should not be modified, when the callback is needed,
1994 the HAL_LPTIM_CompareWriteCallback could be implemented in the user file
1999 * @brief Autoreload write callback in non-blocking mode.
2000 * @param hlptim LPTIM handle
2003 __weak
void HAL_LPTIM_AutoReloadWriteCallback(LPTIM_HandleTypeDef
*hlptim
)
2005 /* Prevent unused argument(s) compilation warning */
2008 /* NOTE : This function should not be modified, when the callback is needed,
2009 the HAL_LPTIM_AutoReloadWriteCallback could be implemented in the user file
2014 * @brief Direction counter changed from Down to Up callback in non-blocking mode.
2015 * @param hlptim LPTIM handle
2018 __weak
void HAL_LPTIM_DirectionUpCallback(LPTIM_HandleTypeDef
*hlptim
)
2020 /* Prevent unused argument(s) compilation warning */
2023 /* NOTE : This function should not be modified, when the callback is needed,
2024 the HAL_LPTIM_DirectionUpCallback could be implemented in the user file
2029 * @brief Direction counter changed from Up to Down callback in non-blocking mode.
2030 * @param hlptim LPTIM handle
2033 __weak
void HAL_LPTIM_DirectionDownCallback(LPTIM_HandleTypeDef
*hlptim
)
2035 /* Prevent unused argument(s) compilation warning */
2038 /* NOTE : This function should not be modified, when the callback is needed,
2039 the HAL_LPTIM_DirectionDownCallback could be implemented in the user file
2043 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
2045 * @brief Register a User LPTIM callback to be used instead of the weak predefined callback
2046 * @param hlptim LPTIM handle
2047 * @param CallbackID ID of the callback to be registered
2048 * This parameter can be one of the following values:
2049 * @arg @ref HAL_LPTIM_MSPINIT_CB_ID LPTIM Base Msp Init Callback ID
2050 * @arg @ref HAL_LPTIM_MSPDEINIT_CB_ID LPTIM Base Msp DeInit Callback ID
2051 * @arg @ref HAL_LPTIM_COMPARE_MATCH_CB_ID Compare match Callback ID
2052 * @arg @ref HAL_LPTIM_AUTORELOAD_MATCH_CB_ID Auto-reload match Callback ID
2053 * @arg @ref HAL_LPTIM_TRIGGER_CB_ID External trigger event detection Callback ID
2054 * @arg @ref HAL_LPTIM_COMPARE_WRITE_CB_ID Compare register write complete Callback ID
2055 * @arg @ref HAL_LPTIM_AUTORELOAD_WRITE_CB_ID Auto-reload register write complete Callback ID
2056 * @arg @ref HAL_LPTIM_DIRECTION_UP_CB_ID Up-counting direction change Callback ID
2057 * @arg @ref HAL_LPTIM_DIRECTION_DOWN_CB_ID Down-counting direction change Callback ID
2058 * @param pCallback pointer to the callback function
2061 HAL_StatusTypeDef
HAL_LPTIM_RegisterCallback(LPTIM_HandleTypeDef
*hlptim
,
2062 HAL_LPTIM_CallbackIDTypeDef CallbackID
,
2063 pLPTIM_CallbackTypeDef pCallback
)
2065 HAL_StatusTypeDef status
= HAL_OK
;
2067 if (pCallback
== NULL
)
2072 /* Process locked */
2075 if (hlptim
->State
== HAL_LPTIM_STATE_READY
)
2079 case HAL_LPTIM_MSPINIT_CB_ID
:
2080 hlptim
->MspInitCallback
= pCallback
;
2083 case HAL_LPTIM_MSPDEINIT_CB_ID
:
2084 hlptim
->MspDeInitCallback
= pCallback
;
2087 case HAL_LPTIM_COMPARE_MATCH_CB_ID
:
2088 hlptim
->CompareMatchCallback
= pCallback
;
2091 case HAL_LPTIM_AUTORELOAD_MATCH_CB_ID
:
2092 hlptim
->AutoReloadMatchCallback
= pCallback
;
2095 case HAL_LPTIM_TRIGGER_CB_ID
:
2096 hlptim
->TriggerCallback
= pCallback
;
2099 case HAL_LPTIM_COMPARE_WRITE_CB_ID
:
2100 hlptim
->CompareWriteCallback
= pCallback
;
2103 case HAL_LPTIM_AUTORELOAD_WRITE_CB_ID
:
2104 hlptim
->AutoReloadWriteCallback
= pCallback
;
2107 case HAL_LPTIM_DIRECTION_UP_CB_ID
:
2108 hlptim
->DirectionUpCallback
= pCallback
;
2111 case HAL_LPTIM_DIRECTION_DOWN_CB_ID
:
2112 hlptim
->DirectionDownCallback
= pCallback
;
2116 /* Return error status */
2121 else if (hlptim
->State
== HAL_LPTIM_STATE_RESET
)
2125 case HAL_LPTIM_MSPINIT_CB_ID
:
2126 hlptim
->MspInitCallback
= pCallback
;
2129 case HAL_LPTIM_MSPDEINIT_CB_ID
:
2130 hlptim
->MspDeInitCallback
= pCallback
;
2134 /* Return error status */
2141 /* Return error status */
2146 __HAL_UNLOCK(hlptim
);
2152 * @brief Unregister a LPTIM callback
2153 * LLPTIM callback is redirected to the weak predefined callback
2154 * @param hlptim LPTIM handle
2155 * @param CallbackID ID of the callback to be unregistered
2156 * This parameter can be one of the following values:
2157 * @arg @ref HAL_LPTIM_MSPINIT_CB_ID LPTIM Base Msp Init Callback ID
2158 * @arg @ref HAL_LPTIM_MSPDEINIT_CB_ID LPTIM Base Msp DeInit Callback ID
2159 * @arg @ref HAL_LPTIM_COMPARE_MATCH_CB_ID Compare match Callback ID
2160 * @arg @ref HAL_LPTIM_AUTORELOAD_MATCH_CB_ID Auto-reload match Callback ID
2161 * @arg @ref HAL_LPTIM_TRIGGER_CB_ID External trigger event detection Callback ID
2162 * @arg @ref HAL_LPTIM_COMPARE_WRITE_CB_ID Compare register write complete Callback ID
2163 * @arg @ref HAL_LPTIM_AUTORELOAD_WRITE_CB_ID Auto-reload register write complete Callback ID
2164 * @arg @ref HAL_LPTIM_DIRECTION_UP_CB_ID Up-counting direction change Callback ID
2165 * @arg @ref HAL_LPTIM_DIRECTION_DOWN_CB_ID Down-counting direction change Callback ID
2168 HAL_StatusTypeDef
HAL_LPTIM_UnRegisterCallback(LPTIM_HandleTypeDef
*hlptim
,
2169 HAL_LPTIM_CallbackIDTypeDef CallbackID
)
2171 HAL_StatusTypeDef status
= HAL_OK
;
2173 /* Process locked */
2176 if (hlptim
->State
== HAL_LPTIM_STATE_READY
)
2180 case HAL_LPTIM_MSPINIT_CB_ID
:
2181 hlptim
->MspInitCallback
= HAL_LPTIM_MspInit
; /* Legacy weak MspInit Callback */
2184 case HAL_LPTIM_MSPDEINIT_CB_ID
:
2185 hlptim
->MspDeInitCallback
= HAL_LPTIM_MspDeInit
; /* Legacy weak Msp DeInit Callback */
2188 case HAL_LPTIM_COMPARE_MATCH_CB_ID
:
2189 hlptim
->CompareMatchCallback
= HAL_LPTIM_CompareMatchCallback
; /* Legacy weak Compare match Callback */
2192 case HAL_LPTIM_AUTORELOAD_MATCH_CB_ID
:
2193 hlptim
->AutoReloadMatchCallback
= HAL_LPTIM_AutoReloadMatchCallback
; /* Legacy weak Auto-reload match Callback */
2196 case HAL_LPTIM_TRIGGER_CB_ID
:
2197 hlptim
->TriggerCallback
= HAL_LPTIM_TriggerCallback
; /* Legacy weak External trigger event detection Callback */
2200 case HAL_LPTIM_COMPARE_WRITE_CB_ID
:
2201 hlptim
->CompareWriteCallback
= HAL_LPTIM_CompareWriteCallback
; /* Legacy weak Compare register write complete Callback */
2204 case HAL_LPTIM_AUTORELOAD_WRITE_CB_ID
:
2205 hlptim
->AutoReloadWriteCallback
= HAL_LPTIM_AutoReloadWriteCallback
; /* Legacy weak Auto-reload register write complete Callback */
2208 case HAL_LPTIM_DIRECTION_UP_CB_ID
:
2209 hlptim
->DirectionUpCallback
= HAL_LPTIM_DirectionUpCallback
; /* Legacy weak Up-counting direction change Callback */
2212 case HAL_LPTIM_DIRECTION_DOWN_CB_ID
:
2213 hlptim
->DirectionDownCallback
= HAL_LPTIM_DirectionDownCallback
; /* Legacy weak Down-counting direction change Callback */
2217 /* Return error status */
2222 else if (hlptim
->State
== HAL_LPTIM_STATE_RESET
)
2226 case HAL_LPTIM_MSPINIT_CB_ID
:
2227 hlptim
->MspInitCallback
= HAL_LPTIM_MspInit
; /* Legacy weak MspInit Callback */
2230 case HAL_LPTIM_MSPDEINIT_CB_ID
:
2231 hlptim
->MspDeInitCallback
= HAL_LPTIM_MspDeInit
; /* Legacy weak Msp DeInit Callback */
2235 /* Return error status */
2242 /* Return error status */
2247 __HAL_UNLOCK(hlptim
);
2251 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
2257 /** @defgroup LPTIM_Group5 Peripheral State functions
2258 * @brief Peripheral State functions.
2261 ==============================================================================
2262 ##### Peripheral State functions #####
2263 ==============================================================================
2265 This subsection permits to get in run-time the status of the peripheral.
2272 * @brief Return the LPTIM handle state.
2273 * @param hlptim LPTIM handle
2276 HAL_LPTIM_StateTypeDef
HAL_LPTIM_GetState(LPTIM_HandleTypeDef
*hlptim
)
2278 /* Return LPTIM handle state */
2279 return hlptim
->State
;
2291 /* Private functions ---------------------------------------------------------*/
2293 /** @defgroup LPTIM_Private_Functions LPTIM Private Functions
2296 #if (USE_HAL_LPTIM_REGISTER_CALLBACKS == 1)
2298 * @brief Reset interrupt callbacks to the legacy weak callbacks.
2299 * @param lptim pointer to a LPTIM_HandleTypeDef structure that contains
2300 * the configuration information for LPTIM module.
2303 static void LPTIM_ResetCallback(LPTIM_HandleTypeDef
*lptim
)
2305 /* Reset the LPTIM callback to the legacy weak callbacks */
2306 lptim
->CompareMatchCallback
= HAL_LPTIM_CompareMatchCallback
; /* Compare match Callback */
2307 lptim
->AutoReloadMatchCallback
= HAL_LPTIM_AutoReloadMatchCallback
; /* Auto-reload match Callback */
2308 lptim
->TriggerCallback
= HAL_LPTIM_TriggerCallback
; /* External trigger event detection Callback */
2309 lptim
->CompareWriteCallback
= HAL_LPTIM_CompareWriteCallback
; /* Compare register write complete Callback */
2310 lptim
->AutoReloadWriteCallback
= HAL_LPTIM_AutoReloadWriteCallback
; /* Auto-reload register write complete Callback */
2311 lptim
->DirectionUpCallback
= HAL_LPTIM_DirectionUpCallback
; /* Up-counting direction change Callback */
2312 lptim
->DirectionDownCallback
= HAL_LPTIM_DirectionDownCallback
; /* Down-counting direction change Callback */
2314 #endif /* USE_HAL_LPTIM_REGISTER_CALLBACKS */
2317 * @brief LPTimer Wait for flag set
2318 * @param hlptim pointer to a LPTIM_HandleTypeDef structure that contains
2319 * the configuration information for LPTIM module.
2320 * @param flag The lptim flag
2321 * @retval HAL status
2323 static HAL_StatusTypeDef
LPTIM_WaitForFlag(LPTIM_HandleTypeDef
*hlptim
, uint32_t flag
)
2325 HAL_StatusTypeDef result
= HAL_OK
;
2326 uint32_t count
= TIMEOUT
* (SystemCoreClock
/ 20UL / 1000UL);
2332 result
= HAL_TIMEOUT
;
2335 while ((!(__HAL_LPTIM_GET_FLAG((hlptim
), (flag
)))) && (count
!= 0UL));
2341 * @brief Disable LPTIM HW instance.
2342 * @param hlptim pointer to a LPTIM_HandleTypeDef structure that contains
2343 * the configuration information for LPTIM module.
2344 * @note The following sequence is required to solve LPTIM disable HW limitation.
2345 * Please check Errata Sheet ES0335 for more details under "MCU may remain
2346 * stuck in LPTIM interrupt when entering Stop mode" section.
2349 void LPTIM_Disable(LPTIM_HandleTypeDef
*hlptim
)
2351 uint32_t tmpclksource
= 0;
2360 /*********** Save LPTIM Config ***********/
2361 /* Save LPTIM source clock */
2362 switch ((uint32_t)hlptim
->Instance
)
2365 tmpclksource
= __HAL_RCC_GET_LPTIM1_SOURCE();
2368 tmpclksource
= __HAL_RCC_GET_LPTIM2_SOURCE();
2372 tmpclksource
= __HAL_RCC_GET_LPTIM3_SOURCE();
2377 tmpclksource
= __HAL_RCC_GET_LPTIM4_SOURCE();
2382 tmpclksource
= __HAL_RCC_GET_LPTIM5_SOURCE();
2389 /* Save LPTIM configuration registers */
2390 tmpIER
= hlptim
->Instance
->IER
;
2391 tmpCFGR
= hlptim
->Instance
->CFGR
;
2392 tmpCMP
= hlptim
->Instance
->CMP
;
2393 tmpARR
= hlptim
->Instance
->ARR
;
2394 tmpCFGR2
= hlptim
->Instance
->CFGR2
;
2396 /*********** Reset LPTIM ***********/
2397 switch ((uint32_t)hlptim
->Instance
)
2400 __HAL_RCC_LPTIM1_FORCE_RESET();
2401 __HAL_RCC_LPTIM1_RELEASE_RESET();
2404 __HAL_RCC_LPTIM2_FORCE_RESET();
2405 __HAL_RCC_LPTIM2_RELEASE_RESET();
2409 __HAL_RCC_LPTIM3_FORCE_RESET();
2410 __HAL_RCC_LPTIM3_RELEASE_RESET();
2415 __HAL_RCC_LPTIM4_FORCE_RESET();
2416 __HAL_RCC_LPTIM4_RELEASE_RESET();
2421 __HAL_RCC_LPTIM5_FORCE_RESET();
2422 __HAL_RCC_LPTIM5_RELEASE_RESET();
2429 /*********** Restore LPTIM Config ***********/
2430 if ((tmpCMP
!= 0UL) || (tmpARR
!= 0UL))
2432 /* Force LPTIM source kernel clock from APB */
2433 switch ((uint32_t)hlptim
->Instance
)
2436 __HAL_RCC_LPTIM1_CONFIG(RCC_LPTIM1CLKSOURCE_D2PCLK1
);
2439 __HAL_RCC_LPTIM2_CONFIG(RCC_LPTIM2CLKSOURCE_D3PCLK1
);
2443 __HAL_RCC_LPTIM3_CONFIG(RCC_LPTIM3CLKSOURCE_D3PCLK1
);
2448 __HAL_RCC_LPTIM4_CONFIG(RCC_LPTIM4CLKSOURCE_D3PCLK1
);
2453 __HAL_RCC_LPTIM5_CONFIG(RCC_LPTIM5CLKSOURCE_D3PCLK1
);
2462 /* Restore CMP register (LPTIM should be enabled first) */
2463 hlptim
->Instance
->CR
|= LPTIM_CR_ENABLE
;
2464 hlptim
->Instance
->CMP
= tmpCMP
;
2466 /* Wait for the completion of the write operation to the LPTIM_CMP register */
2467 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_CMPOK
) == HAL_TIMEOUT
)
2469 hlptim
->State
= HAL_LPTIM_STATE_TIMEOUT
;
2471 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_CMPOK
);
2476 /* Restore ARR register (LPTIM should be enabled first) */
2477 hlptim
->Instance
->CR
|= LPTIM_CR_ENABLE
;
2478 hlptim
->Instance
->ARR
= tmpARR
;
2480 /* Wait for the completion of the write operation to the LPTIM_ARR register */
2481 if (LPTIM_WaitForFlag(hlptim
, LPTIM_FLAG_ARROK
) == HAL_TIMEOUT
)
2483 hlptim
->State
= HAL_LPTIM_STATE_TIMEOUT
;
2486 __HAL_LPTIM_CLEAR_FLAG(hlptim
, LPTIM_FLAG_ARROK
);
2489 /* Restore LPTIM source kernel clock */
2490 switch ((uint32_t)hlptim
->Instance
)
2493 __HAL_RCC_LPTIM1_CONFIG(tmpclksource
);
2496 __HAL_RCC_LPTIM2_CONFIG(tmpclksource
);
2500 __HAL_RCC_LPTIM3_CONFIG(tmpclksource
);
2505 __HAL_RCC_LPTIM4_CONFIG(tmpclksource
);
2510 __HAL_RCC_LPTIM5_CONFIG(tmpclksource
);
2518 /* Restore configuration registers (LPTIM should be disabled first) */
2519 hlptim
->Instance
->CR
&= ~(LPTIM_CR_ENABLE
);
2520 hlptim
->Instance
->IER
= tmpIER
;
2521 hlptim
->Instance
->CFGR
= tmpCFGR
;
2522 hlptim
->Instance
->CFGR2
= tmpCFGR2
;
2529 #endif /* LPTIM1 || LPTIM2 || LPTIM3 || LPTIM4 || LPTIM5 */
2531 #endif /* HAL_LPTIM_MODULE_ENABLED */
2540 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/