STM32L4xx_HAL_Driver  1.14.0

Extended Callbacks functions. More...

Functions

void HAL_TIMEx_CommutCallback (TIM_HandleTypeDef *htim)
 Hall commutation changed callback in non-blocking mode. More...
 
void HAL_TIMEx_CommutHalfCpltCallback (TIM_HandleTypeDef *htim)
 Hall commutation changed half complete callback in non-blocking mode. More...
 
void HAL_TIMEx_BreakCallback (TIM_HandleTypeDef *htim)
 Hall Break detection callback in non-blocking mode. More...
 
void HAL_TIMEx_Break2Callback (TIM_HandleTypeDef *htim)
 Hall Break2 detection callback in non blocking mode. More...
 

Detailed Description

Extended Callbacks functions.

  ==============================================================================
                    ##### Extended Callbacks functions #####
  ==============================================================================
  [..]
    This section provides Extended TIM callback functions:
    (+) Timer Commutation callback
    (+) Timer Break callback

Function Documentation

◆ HAL_TIMEx_Break2Callback()

__weak void HAL_TIMEx_Break2Callback ( TIM_HandleTypeDef htim)

Hall Break2 detection callback in non blocking mode.

Parameters
htimTIM handle
Return values
None

Definition at line 2246 of file stm32l4xx_hal_tim_ex.c.

2247 {
2248  /* Prevent unused argument(s) compilation warning */
2249  UNUSED(htim);
2250 
2251  /* NOTE : This function Should not be modified, when the callback is needed,
2252  the HAL_TIMEx_Break2Callback could be implemented in the user file
2253  */
2254 }

◆ HAL_TIMEx_BreakCallback()

__weak void HAL_TIMEx_BreakCallback ( TIM_HandleTypeDef htim)

Hall Break detection callback in non-blocking mode.

Parameters
htimTIM handle
Return values
None

Definition at line 2231 of file stm32l4xx_hal_tim_ex.c.

2232 {
2233  /* Prevent unused argument(s) compilation warning */
2234  UNUSED(htim);
2235 
2236  /* NOTE : This function should not be modified, when the callback is needed,
2237  the HAL_TIMEx_BreakCallback could be implemented in the user file
2238  */
2239 }

◆ HAL_TIMEx_CommutCallback()

__weak void HAL_TIMEx_CommutCallback ( TIM_HandleTypeDef htim)

Hall commutation changed callback in non-blocking mode.

Parameters
htimTIM handle
Return values
None

Definition at line 2202 of file stm32l4xx_hal_tim_ex.c.

2203 {
2204  /* Prevent unused argument(s) compilation warning */
2205  UNUSED(htim);
2206 
2207  /* NOTE : This function should not be modified, when the callback is needed,
2208  the HAL_TIMEx_CommutCallback could be implemented in the user file
2209  */
2210 }

◆ HAL_TIMEx_CommutHalfCpltCallback()

__weak void HAL_TIMEx_CommutHalfCpltCallback ( TIM_HandleTypeDef htim)

Hall commutation changed half complete callback in non-blocking mode.

Parameters
htimTIM handle
Return values
None

Definition at line 2216 of file stm32l4xx_hal_tim_ex.c.

2217 {
2218  /* Prevent unused argument(s) compilation warning */
2219  UNUSED(htim);
2220 
2221  /* NOTE : This function should not be modified, when the callback is needed,
2222  the HAL_TIMEx_CommutHalfCpltCallback could be implemented in the user file
2223  */
2224 }