What modification is necessary to TouchGFX files to use the TIM interrupt ?
I would like to add a TMR interrupt to manage an action every 1sec.Code used now in the stm32746g_discovery.c file:void TIM2_IRQHandler(void){ if (TIM_GetITStatus(TIM2, TIM_IT_Update) != RESET) { TIM_ClearITPendingBit(TIM2, TIM_IT_Update); STM32...