HAL + 0/3 examples
CodeScope will show references to __HAL_TIM_SET_AUTORELOAD from the following samples and libraries:
Examples
STM32F4-Discovery
STM32F401-Discovery
STM32F411E-Discovery
 
Symbols
loading...
Files
loading...

__HAL_TIM_SET_AUTORELOAD macro

Set the TIM Autoreload Register value on runtime without calling another time any Init function.

Syntax

#define __HAL_TIM_SET_AUTORELOAD(__HANDLE__, __AUTORELOAD__) \     do{ \     (__HANDLE__)->Instance->ARR = (__AUTORELOAD__); \     (__HANDLE__)->Init.Period = (__AUTORELOAD__); \     } while(0)

Arguments

__HANDLE__

TIM handle.

__AUTORELOAD__

specifies the Counter register new value.

Return value

None

Examples

__HAL_TIM_SET_AUTORELOAD is referenced by 3 libraries and example projects.

References

LocationText
stm32f4xx_hal_tim.h:1297
#define __HAL_TIM_SET_AUTORELOAD(__HANDLE__, __AUTORELOAD__) \