Question
I am using CubeMX with STM32F765. I recently upgraded the CubeMX to the 5.0 and I noticed some differences on the SysTick management.
I have configured TIM1 as SysTick().
I noticed that the function
void SysTick_Handler(void)is no mode generated in stm32f7xx_it.c. Why?
According to the UM1718 (DocID025776 Rev 21) pag. 90, "SysTick_Handler calls osSystickHandler when FreeRTOS is used" and it is exactly what I get with previous CubeMX where i had (stm32f7xx_it.c):
/**
* @brief This function handles System tick timer.
*/
void SysTick_Handler(void)
{
/* USER CODE BEGIN SysTick_IRQn 0 */
/* USER CODE END SysTick_IRQn 0 */
osSystickHandler();
/* USER CODE BEGIN SysTick_IRQn 1 */
/* USER CODE END SysTick_IRQn 1 */
}