Using NUCLEO F756ZG & STM Cube IDE
I am trying to setup & enable interrupt for TIM4
The compiler is not happy with these 4 lines of code
TIM4->ARR=5000;
NVIC_SetVector(TIM4_IRQn, (uint32_t)&TIM4_IRQHandler);
NVIC_SetPriority(TIM4_IRQn,0);
NVIC_Enab...