STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
Functions | Variables

Functions

void TIM6_DAC_IRQHandler (void)
 This function handles TIM interrupt request. More...
 
HAL_StatusTypeDef HAL_InitTick (uint32_t TickPriority)
 This function configures the TIM6 as a time base source. The time source is configured to have 1ms time base with a dedicated Tick interrupt priority. More...
 
void HAL_SuspendTick (void)
 Suspend Tick increment. More...
 
void HAL_ResumeTick (void)
 Resume Tick increment. More...
 
void HAL_TIM_PeriodElapsedCallback (TIM_HandleTypeDef *htim)
 Period elapsed callback in non blocking mode. More...
 

Variables

TIM_HandleTypeDef TimHandle
 

Detailed Description

Function Documentation

HAL_StatusTypeDef HAL_InitTick ( uint32_t  TickPriority)

This function configures the TIM6 as a time base source. The time source is configured to have 1ms time base with a dedicated Tick interrupt priority.

Note
This function is called automatically at the beginning of program after reset by HAL_Init() or at any time when clock is configured, by HAL_RCC_ClockConfig().
Parameters
TickPriorityTick interrupt priority.
Return values
HALstatus

Definition at line 73 of file stm32f7xx_hal_timebase_tim_template.c.

void HAL_ResumeTick ( void  )

Resume Tick increment.

Note
Enable the tick increment by Enabling TIM6 update interrupt.
Parameters
None
Return values
None

Definition at line 149 of file stm32f7xx_hal_timebase_tim_template.c.

void HAL_SuspendTick ( void  )

Suspend Tick increment.

Note
Disable the tick increment by disabling TIM6 update interrupt.
Parameters
None
Return values
None

Definition at line 137 of file stm32f7xx_hal_timebase_tim_template.c.

void HAL_TIM_PeriodElapsedCallback ( TIM_HandleTypeDef htim)

Period elapsed callback in non blocking mode.

Note
This function is called when TIM6 interrupt took place, inside HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment a global variable "uwTick" used as application time base.
Parameters
htim: TIM handle
Return values
None

Definition at line 163 of file stm32f7xx_hal_timebase_tim_template.c.

void TIM6_DAC_IRQHandler ( void  )

This function handles TIM interrupt request.

Parameters
None
Return values
None

Definition at line 173 of file stm32f7xx_hal_timebase_tim_template.c.

Variable Documentation

TIM_HandleTypeDef TimHandle

Definition at line 59 of file stm32f7xx_hal_timebase_tim_template.c.