TIM6 and TIM7 identical, the interrupt is working for TIM6 and not for TIM7
Hi,
I added TIM7 to application and configured it the same way TIM6 was.
I need to use two timers for my app, code contains all the same setups for TIM6 and TIM7, except for the timer expiration counters, and I observe that the callback
void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
never enters in the conditional block it contains:
if ( htim == &htim7 )
{
/* code block */
}
the callback above is invoked when htim == &tim6.
The timers setup are:

Please help, I double checked all I could without finding a solution
